AssertionError: false == true
See original GitHub issuenode -v 6.9.2 http2@3.3.6
Debug: internal, implementation, error
AssertionError: false == true
at Connection._send (/var/www/revizor-game.ru/node_modules/http2/lib/protocol/connection.js:326:9)
at runCallback (timers.js:637:20)
at tryOnImmediate (timers.js:610:5)
at processImmediate [as _immediateCallback] (timers.js:582:5)
My server.js
$lib.s = new Hapi.Server();
var listener = http2.createServer({
key: fs.readFileSync('/var/www/revizor-game.ru.key', 'utf8'),
cert: fs.readFileSync('/var/www/ca.crt', 'utf8'),
pfx: fs.readFileSync('/var/www/pfx.pfx')
});
$lib.s.connection({
listener: listener,
host: 'revizor-game.ru',
port: 443,
tls: true
});
and boot.js (clustering) - http://pastebin.com/YzGsJVUk
Issue Analytics
- State:
- Created 7 years ago
- Reactions:5
- Comments:19
Top Results From Across the Web
False is not true error? - python - Stack Overflow
I'm trying to set global definitions to True, but I'm always getting an error saying "AssertionError: False is not True".
Read more >AssertionError: False is not true : Make sure you ... - Treehouse
This is importing a function named `tweet` from a file that we unfortunately don't have access to change.
Read more >unit test:AssertionError: False is not true - Google Groups
It seems to me that the error messages you're getting are pretty clear - you're asserting that certain content exists, and it doesn't....
Read more >Practice :: Learn Python by Nina Zakharenko
You should have gotten an error: AssertionError: False is not true caused by self.assertTrue(divisible_by(10, 3)) . Makes sense, because 10 is not evenly ......
Read more >AssertionError: False is not true · Issue #3 - GitHub
Hi, I am back again. When running the test.py, I got the following error File "test.py", line 69, in test_gradients self.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Getting this as well with node-apn:
Node version: 6.9.1
@nwgh Also have seen this assert when running
node-http2
withnode-apn
: https://github.com/molnarg/node-http2/blob/master/lib/protocol/connection.js#L326Looking at the call to
this.push
wheremoreNeeded
is set, I’m not sure that the assert makes sense as written:Here’s the code for
push
: https://github.com/molnarg/node-http2/blob/master/lib/protocol/flow.js#L277In the case where
this._push(frame)
returnsnull
(i.e., the frame is too large for the window and split or the window size is <=0),moreNeeded
will be set tonull
. Thenthis._queue.push(frame)
is called, butmoreNeeded
is stillnull
. Thus, any time the window is <=0 or the frame is split we’ll hit this assert.