File tree 3 files changed +4
-5
lines changed
3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ if (DEFINED ENV{RESTC_CPP_VERSION})
5
5
endif ()
6
6
7
7
if (NOT DEFINED RESTC_CPP_VERSION)
8
- set (RESTC_CPP_VERSION 0.102.0 )
8
+ set (RESTC_CPP_VERSION 0.102.1 )
9
9
endif ()
10
10
11
11
if (NOT DEFINED RESTC_BOOST_VERSION)
Original file line number Diff line number Diff line change @@ -55,16 +55,15 @@ class ChunkedReaderImpl : public DataReader {
55
55
return out.str ();
56
56
}
57
57
58
- static void Log (const ::restc_cpp::boost_const_buffer buffers, const char * /* tag*/ )
58
+ static void Log (const ::restc_cpp::boost_const_buffer buffers, const char * tag)
59
59
{
60
60
const auto buf_len = boost_buffer_size (buffers);
61
61
62
62
// At the time of the implementation, there are never multiple buffers.
63
63
RESTC_CPP_LOG_TRACE_ (tag << ' ' << " # " << buf_len
64
64
<< " bytes: "
65
65
<< ToPrintable ({
66
- boost::asio::buffer_cast<const char *>(*buffers.begin ()),
67
- buf_len}));
66
+ boost_buffer_cast (buffers), buf_len}));
68
67
}
69
68
70
69
::restc_cpp::boost_const_buffer ReadSome () override {
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ using namespace restc_cpp;
14
14
15
15
/* These url's points to a local Docker container with nginx, linked to
16
16
* a jsonserver docker container with mock data.
17
- * The scripts to build and run these containers are in the ./tests directory .
17
+ * You can run /.create- and- run- containers.sh to start them .
18
18
*/
19
19
const string http_url = " http://localhost:3000/posts" ;
20
20
You can’t perform that action at this time.
0 commit comments