Skip to content
This repository was archived by the owner on Jun 18, 2020. It is now read-only.

Commit 24b685f

Browse files
Removed debugging code and changed default vst version for tests to v1.0
1 parent a20cfbd commit 24b685f

File tree

3 files changed

+1
-5
lines changed

3 files changed

+1
-5
lines changed

src/connection.cpp

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,12 +105,9 @@ namespace arangodb { namespace fuerte { namespace php {
105105

106106
Response* Connection::sendRequest(Request* request)
107107
{
108-
std::cout << "Request: " << fu::to_string(*request->getFuerteRequest());
109-
110108
auto result = this->connection->sendRequest(
111109
std::move(request->getFuerteRequest())
112110
);
113-
std::cout << "Response: " << fu::to_string(*result);
114111

115112
return new Response(*result);
116113
}

src/connection.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
#include <phpcpp.h>
44
#include <thread>
5-
#include <fuerte/helper.h>
65

76
#include "request.h"
87
#include "response.h"

tests/TestUtil.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ private static function getSpecifiedConnectionParams(): array
9696
return [
9797
Connection::HOST => getenv('arangodb_host'),
9898
Connection::MAX_CHUNK_SIZE => 64,
99-
Connection::VST_VERSION => Connection::VST_VERSION_11,
99+
Connection::VST_VERSION => Connection::VST_VERSION_10,
100100
];
101101
}
102102
}

0 commit comments

Comments
 (0)