remove printf debugging statements

This commit is contained in:
Jon Fu 2022-05-26 16:51:31 -04:00
parent c6ac9cf2a5
commit 8180414b4a
1 changed files with 0 additions and 2 deletions

View File

@ -193,10 +193,8 @@ int populate(Database db,
auto future_commit = systemTx.commit();
const auto rc = waitAndHandleError(systemTx, future_commit, "CREATE_TENANT");
if (rc == FutureRC::RETRY) {
printf("retry\n");
continue;
} else {
printf("success\n");
// Keep going if commit was successful (FutureRC::OK)
// If not a retryable error, expected to be the error
// tenant_already_exists, meaning another thread finished creating it