Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
0.12.0
-
None
-
None
Description
master 0616 / 699f866fb73d81c6d35ad6b401ceceb2499decbf
Author: J.J. Liu <liujiajun1999@gmail.com>
Date: Wed Jun 16 22:58:17 2021 +0800
Fix Cpp example not release query dataset bug (#3419)
Running maven command in IoTDB root directory:
mvn package -P compile-cpp -pl example/client-cpp-example -am -DskipTest
got error:
Running "qunit:ThriftJS_TLS" (qunit) task
Testing https://localhost:8091/test-nojq.html >> There was an error with headless chrome
Fatal error: Navigation Timeout Exceeded: 5000ms exceeded
Modify the file:
./compile-tools/thrift/target/thrift-0.14.1/lib/js/node_modules/puppeteer/lib/FrameManager.js
line 62
this._defaultNavigationTimeout = timeout*100;
line 76
timeout = this._defaultNavigationTimeout*100
line 123
timeout = this._defaultNavigationTimeout*100
line 537
timeout = 360000
can solve the timeout problem.