ci: print the failed stacktrace
This commit is contained in:
parent
d7917d05c6
commit
3536b32ad2
|
@ -541,8 +541,8 @@ client(Name, Config, N) ->
|
||||||
ok = hstreamdb_client:echo(Client),
|
ok = hstreamdb_client:echo(Client),
|
||||||
Client
|
Client
|
||||||
catch
|
catch
|
||||||
Class:Error ->
|
Class:Error:Stk ->
|
||||||
ct:print("Error connecting: ~p", [{Class, Error}]),
|
ct:print("Error connecting: ~p, stacktrace: ~p", [{Class, Error}, Stk]),
|
||||||
ct:sleep(timer:seconds(1)),
|
ct:sleep(timer:seconds(1)),
|
||||||
client(Name, Config, N - 1)
|
client(Name, Config, N - 1)
|
||||||
end.
|
end.
|
||||||
|
|
Loading…
Reference in New Issue