(header string)
| 96 | } |
| 97 | |
| 98 | func formatHeader(header string) string { |
| 99 | result, err := url.QueryUnescape(header) |
| 100 | if err != nil { |
| 101 | return header |
| 102 | } |
| 103 | result = strings.ReplaceAll(result, "&", "\n") |
| 104 | result = strings.ReplaceAll(result, "=", ": ") |
| 105 | return result |
| 106 | } |
| 107 | |
| 108 | func (i *imlServiceModule) RestLogInfo(ctx context.Context, serviceId string, logId string) (*service_dto.RestLogInfo, error) { |
| 109 | c, err := i.clusterService.Get(ctx, cluster.DefaultClusterID) |
no outgoing calls
no test coverage detected