Skip to content

Commit 3819ac3

Browse files
author
Paulo Gomes
committed
Move TransportPool to its own package
The experimental managed transport can also leverage TransportPool, moving it to its own package to accommodate that use case. Signed-off-by: Paulo Gomes <[email protected]>
1 parent f6b86cc commit 3819ac3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

internal/helm/repository/chart_repository.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ import (
3939
"github.com/fluxcd/pkg/version"
4040

4141
"github.com/fluxcd/source-controller/internal/helm"
42-
transport "github.com/fluxcd/source-controller/internal/helm/getter"
42+
"github.com/fluxcd/source-controller/internal/transport"
4343
)
4444

4545
var ErrNoChartIndex = errors.New("no chart index")

internal/helm/getter/transport.go renamed to internal/transport/transport.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package getter
17+
package transport
1818

1919
import (
2020
"crypto/tls"

internal/helm/getter/transport_test.go renamed to internal/transport/transport_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ See the License for the specific language governing permissions and
1414
limitations under the License.
1515
*/
1616

17-
package getter
17+
package transport
1818

1919
import (
2020
"crypto/tls"

0 commit comments

Comments
 (0)