mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-10 20:05:55 +02:00
Check log level before dumping resp (#1243)
* Check log level before dumping resp * Sleep longer in func tests Signed-off-by: Shivam Sandbhor <shivam.sandbhor@gmail.com>
This commit is contained in:
parent
5c7c12c62d
commit
76e3612088
2 changed files with 9 additions and 7 deletions
|
@ -84,13 +84,15 @@ func (c *ApiClient) Do(ctx context.Context, req *http.Request, v interface{}) (*
|
|||
return newResponse(resp), err
|
||||
}
|
||||
|
||||
for k, v := range resp.Header {
|
||||
log.Debugf("[headers] %s : %s", k, v)
|
||||
}
|
||||
if log.GetLevel() >= log.DebugLevel {
|
||||
for k, v := range resp.Header {
|
||||
log.Debugf("[headers] %s : %s", k, v)
|
||||
}
|
||||
|
||||
dump, err := httputil.DumpResponse(resp, true)
|
||||
if err == nil {
|
||||
log.Debugf("Response: %s", string(dump))
|
||||
dump, err := httputil.DumpResponse(resp, true)
|
||||
if err == nil {
|
||||
log.Debugf("Response: %s", string(dump))
|
||||
}
|
||||
}
|
||||
|
||||
response := newResponse(resp)
|
||||
|
|
|
@ -38,7 +38,7 @@ ${CSCLI} version || fail "cannot run cscli version"
|
|||
|
||||
## alerts
|
||||
# alerts list at startup should just return one entry : community pull
|
||||
sleep 5
|
||||
sleep 40
|
||||
${CSCLI} alerts list -ojson | ${JQ} '. | length >= 1' || fail "expected at least one entry from cscli alerts list"
|
||||
## capi
|
||||
${CSCLI} capi status || fail "capi status should be ok"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue