Skip to content
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

[NDB_Factory] Remove testing mode #7199

Merged
merged 23 commits into from
Jan 7, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Explicitly set database in NDB_Client
  • Loading branch information
driusan committed Dec 14, 2020
commit 0a124cd787e1fca79c73a4e50aaa3e306e5c8226
7 changes: 3 additions & 4 deletions php/libraries/NDB_Client.class.inc
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,13 @@ class NDB_Client
$DBSettings['host'],
true
);
// Now make sure the factory reference is the same as the
// singleton reference
$factory->setDatabase($DB);
}

// Now make sure the factory reference is the same as the
// singleton reference
$DB = $factory->database();

$factory->setConfig($config);
$factory->setDatabase($DB);

// add extra include paths. This must be done
// after the database is connected, since the setting
Expand Down