Review feedback
This commit is contained in:
parent
9152477890
commit
c61f8d2526
|
@ -721,22 +721,16 @@ func (s *HTTPServer) Logs(resp http.ResponseWriter, req *http.Request) (interfac
|
|||
return nil, taskNotPresentErr
|
||||
}
|
||||
|
||||
followStr := q.Get("follow")
|
||||
if followStr != "" {
|
||||
if followStr := q.Get("follow"); followStr != "" {
|
||||
if follow, err = strconv.ParseBool(followStr); err != nil {
|
||||
return nil, fmt.Errorf("Failed to parse follow field to boolean: %v", err)
|
||||
}
|
||||
}
|
||||
|
||||
plainStr := q.Get("plain")
|
||||
if plainStr != "" {
|
||||
if plainStr := q.Get("plain"); plainStr != "" {
|
||||
if plain, err = strconv.ParseBool(plainStr); err != nil {
|
||||
return nil, fmt.Errorf("Failed to parse plain field to boolean: %v", err)
|
||||
}
|
||||
|
||||
if plain {
|
||||
follow = false
|
||||
}
|
||||
}
|
||||
|
||||
logType = q.Get("type")
|
||||
|
|
|
@ -229,9 +229,8 @@ allocation was placed.
|
|||
</li>
|
||||
<li>
|
||||
<span class="param">plain</span>
|
||||
A boolean of whether to return just the plain text without framing. If
|
||||
set, follow is automatically unset. This can be usef when viewing logs
|
||||
in a browser.
|
||||
A boolean of whether to return just the plain text without framing.
|
||||
This can be usef when viewing logs in a browser.
|
||||
</li>
|
||||
</ul>
|
||||
</dd>
|
||||
|
|
Loading…
Reference in New Issue