File tree Expand file tree Collapse file tree 4 files changed +17
-16
lines changed Expand file tree Collapse file tree 4 files changed +17
-16
lines changed Original file line number Diff line number Diff line change 92
92
"generator" : " Unix Makefiles" ,
93
93
"hidden" : false ,
94
94
"inherits" : [" cmake-pedantic" ],
95
- "binaryDir" : " ${sourceDir}/build/ clang++-14 " ,
95
+ "binaryDir" : " clang++-15 " ,
96
96
"cacheVariables" : {
97
97
"CMAKE_BUILD_TYPE" : " Debug" ,
98
98
"CMAKE_CXX_EXTENSIONS" : " OFF" ,
99
99
"CMAKE_CXX_FLAGS" : " -Wall -Wextra -fsanitize=address" ,
100
- "CMAKE_CXX_COMPILER" : " clang++-14 " ,
100
+ "CMAKE_CXX_COMPILER" : " clang++-15 " ,
101
101
"CMAKE_SHARED_LINKER_FLAGS" : " -fsanitize=address" ,
102
102
"CMAKE_CXX_STANDARD_REQUIRED" : " ON" ,
103
- "PROJECT_BINARY_DIR" : " ${sourceDir}/build/clang++-14 "
103
+ "PROJECT_BINARY_DIR" : " ${sourceDir}/build/clang++-15 "
104
104
}
105
105
},
106
106
{
Original file line number Diff line number Diff line change @@ -22,14 +22,14 @@ macro(make_testable_example EXAMPLE_NAME STANDARD)
22
22
endif ()
23
23
endmacro ()
24
24
25
- make_testable_example (cpp17_intro 17 )
26
- make_testable_example (cpp17_intro_sync 17 )
27
-
28
- make_testable_example (cpp20_intro 20 )
29
- make_testable_example (cpp20_containers 20 )
30
- make_testable_example (cpp20_json 20 )
31
- make_testable_example (cpp20_intro_tls 20 )
32
- make_testable_example (cpp20_unix_sockets 20 )
25
+ # make_testable_example(cpp17_intro 17)
26
+ # make_testable_example(cpp17_intro_sync 17)
27
+
28
+ # make_testable_example(cpp20_intro 20)
29
+ # make_testable_example(cpp20_containers 20)
30
+ # make_testable_example(cpp20_json 20)
31
+ # make_testable_example(cpp20_intro_tls 20)
32
+ # make_testable_example(cpp20_unix_sockets 20)
33
33
34
34
make_example (cpp20_subscriber 20 )
35
35
make_example (cpp20_streams 20 )
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ auto receiver(std::shared_ptr<connection> conn) -> asio::awaitable<void>
54
54
request req;
55
55
req.push (" SUBSCRIBE" , " channel" );
56
56
57
- generic_response resp;
57
+ boost::redis::generic_flat_response resp;
58
58
conn->set_receive_response (resp);
59
59
60
60
// Loop while reconnection is enabled
@@ -77,7 +77,7 @@ auto receiver(std::shared_ptr<connection> conn) -> asio::awaitable<void>
77
77
std::cout << resp.value ().at (1 ).value << " " << resp.value ().at (2 ).value << " "
78
78
<< resp.value ().at (3 ).value << std::endl;
79
79
80
- consume_one (resp);
80
+ // consume_one(resp);
81
81
}
82
82
}
83
83
}
Original file line number Diff line number Diff line change 4
4
5
5
set -e
6
6
7
+ mkdir /tmp/redis-socks
7
8
chmod 777 /tmp/redis-socks
8
9
9
10
redis-server \
10
11
--tls-port 6380 \
11
- --tls-cert-file /docker/ tls/server.crt \
12
- --tls-key-file /docker/ tls/server.key \
13
- --tls-ca-cert-file /docker/ tls/ca.crt \
12
+ --tls-cert-file tls/server.crt \
13
+ --tls-key-file tls/server.key \
14
+ --tls-ca-cert-file tls/ca.crt \
14
15
--tls-auth-clients no \
15
16
--unixsocket /tmp/redis-socks/redis.sock \
16
17
--unixsocketperm 777
You can’t perform that action at this time.
0 commit comments