-
Notifications
You must be signed in to change notification settings - Fork 208
PHPC-757: Implement The MongoDB Handshake Protocol #378
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
7f761be
24b65ca
3904421
f7b8905
91aaf65
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,6 @@ | |
PHPC-623: Numeric keys limited to unsigned 32-bit integer | ||
--SKIPIF-- | ||
<?php if (8 !== PHP_INT_SIZE) { die('skip Only for 64-bit platform'); } ?> | ||
--INI-- | ||
mongodb.debug=stderr | ||
--FILE-- | ||
<?php | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure how this ended up here and in |
||
|
||
|
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,7 +50,7 @@ object(MongoDB\Driver\Manager)#%d (%d) { | |
["is_passive"]=> | ||
bool(false) | ||
["last_is_master"]=> | ||
array(8) { | ||
array(%d) { | ||
["ismaster"]=> | ||
bool(true) | ||
["maxBsonObjectSize"]=> | ||
|
@@ -68,8 +68,7 @@ object(MongoDB\Driver\Manager)#%d (%d) { | |
int(%d) | ||
["minWireVersion"]=> | ||
int(0) | ||
["ok"]=> | ||
float(1) | ||
%a | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just saw https://github.com/mongodb/mongo-hhvm-driver/pull/127/files#r76989497. Makes sense. |
||
} | ||
["round_trip_time"]=> | ||
int(%d) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I assume
php_phongo_make_mongo_client()
was the only use of libmongoc tracing in PHPC. Is that correct?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes. As this was the only file that failed to compile now @bjori made it not leak.