Skip to content

Commit dc8b017

Browse files
authored
Merge pull request #5826 from maovidal/patch-1
Updated test for SSL support to reflect API changes
2 parents ae2bca2 + 5a65236 commit dc8b017

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

src/docs/src/install/troubleshooting.rst

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ things:
5454
.. code-block:: text
5555
5656
%% test SSL support. If this fails, ensure you have the OTP erlang-crypto library installed
57-
crypto:md5_init().
57+
crypto:hash_init(sha).
5858
5959
%% test Snappy compression. If this fails, check your CouchDB configure script output or alternatively
6060
%% if your distro comes with erlang-snappy make sure you're using only the CouchDB supplied version
@@ -74,9 +74,8 @@ things:
7474
Erlang/OTP 17 [erts-6.2] [source] [64-bit] [smp:2:2] [async-threads:10] [kernel-poll:false]
7575
7676
Eshell V6.2 (abort with ^G)
77-
1> crypto:md5_init().
78-
<<1,35,69,103,137,171,205,239,254,220,186,152,118,84,50,
79-
16,0,0,0,0,0,0,0,0,0,0,0,0,0,...>>
77+
1> crypto:hash_init(sha).
78+
#Ref<0.3087268666.1613103106.180459>
8079
2> snappy:compress("gogogogogogogogogogogogogogo").
8180
{ok,<<28,4,103,111,102,2,0>>}
8281
3> jiffy:decode(jiffy:encode(<<"[1,2,3,4,5]">>)).

0 commit comments

Comments
 (0)