()
| 153 | } |
| 154 | |
| 155 | func (c DuClient) httpClientSettings() network.HttpClientSettings { |
| 156 | return *network.NewHttpClientSettings( |
| 157 | c.debug, |
| 158 | c.settings.OperationId, |
| 159 | c.settings.Header, |
| 160 | c.settings.Timeout, |
| 161 | c.settings.MaxAttempts, |
| 162 | c.settings.Insecure) |
| 163 | } |
| 164 | |
| 165 | func (c DuClient) newUriBuilder(path string) *converter.UriBuilder { |
| 166 | baseUri := c.baseUri |
no test coverage detected