()
| 102 | } |
| 103 | |
| 104 | func (node *HTTPNode) Read() ([]byte, error) { |
| 105 | return node.ReadContext(context.Background()) |
| 106 | } |
| 107 | |
| 108 | func (node *HTTPNode) ReadContext(ctx context.Context) ([]byte, error) { |
| 109 | url, err := RemoteExists(ctx, *node.url, node.client) |
nothing calls this directly
no test coverage detected