Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Camel 3.10] Upgrade to minio 8.2.1 in Camel 3.10 breaks Quarkiverse Minio and MinioClientProducer in our test #2503

Closed
ppalaga opened this issue Apr 22, 2021 · 2 comments · Fixed by #2722
Milestone

Comments

@ppalaga
Copy link
Contributor

ppalaga commented Apr 22, 2021

See quarkusio/quarkus#16713

Blocked by quarkiverse/quarkus-minio#53

Except for quarkiverse/quarkus-minio#53 , MinioClientProducer needs to be changed to

package org.apache.camel.quarkus.component.minio.it;

import javax.enterprise.inject.Produces;
import javax.inject.Named;
import javax.inject.Singleton;

import io.minio.MinioClient;

public class MinioClientProducer {

    @Produces
    @Singleton
    @Named("minioClient")
    public MinioClient produceMinioClient() {
        return MinioClient.builder()
                .endpoint("http://" + System.getProperty(MinioResource.PARAM_SERVER_HOST),
                        Integer.parseInt(System.getProperty(MinioResource.PARAM_SERVER_PORT)), false)
                .credentials(MinioResource.SERVER_ACCESS_KEY, MinioResource.SERVER_SECRET_KEY)
                .build();
    }
}

As a temporary workaround, we might downgrade Minio to 8.1.0

@ppalaga ppalaga changed the title Upgrade to minio 8.2.1 in Camel 3.10 breaks Quarkiverse Minio and MinioClientProducer in our test [Camel 3.10] Upgrade to minio 8.2.1 in Camel 3.10 breaks Quarkiverse Minio and MinioClientProducer in our test Apr 22, 2021
ppalaga added a commit that referenced this issue Apr 22, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
ppalaga added a commit that referenced this issue Apr 22, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
ppalaga added a commit that referenced this issue Apr 26, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
ppalaga added a commit that referenced this issue Apr 27, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
zbendhiba pushed a commit that referenced this issue Apr 30, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
zbendhiba pushed a commit that referenced this issue May 3, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
zbendhiba pushed a commit that referenced this issue May 11, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
zbendhiba pushed a commit that referenced this issue May 12, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
jamesnetherton pushed a commit that referenced this issue May 13, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
jamesnetherton pushed a commit that referenced this issue May 14, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
jamesnetherton pushed a commit that referenced this issue May 17, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
ppalaga added a commit to ppalaga/camel-quarkus that referenced this issue May 21, 2021
…3.10 breaks Quarkiverse Minio and MinioClientProducer in our test
ppalaga added a commit to ppalaga/camel-quarkus that referenced this issue May 24, 2021
…3.10 breaks Quarkiverse Minio and MinioClientProducer in our test
ppalaga added a commit to ppalaga/camel-quarkus that referenced this issue May 24, 2021
…3.10 breaks Quarkiverse Minio and MinioClientProducer in our test
jamesnetherton pushed a commit that referenced this issue May 25, 2021
…reaks Quarkiverse Minio and MinioClientProducer in our test
@ppalaga ppalaga added this to the 2.0.0 milestone May 25, 2021
@ppalaga
Copy link
Contributor Author

ppalaga commented May 25, 2021

We can upgrade to Quarkiverse Minio 0.2.3 now.

@ppalaga ppalaga modified the milestones: 2.0.0, 2.0.0-M2 Jun 4, 2021
ppalaga added a commit to ppalaga/camel-quarkus that referenced this issue Jun 4, 2021
ppalaga added a commit to ppalaga/camel-quarkus that referenced this issue Jun 4, 2021
ppalaga added a commit to ppalaga/camel-quarkus that referenced this issue Jun 4, 2021
ppalaga added a commit to ppalaga/camel-quarkus that referenced this issue Jun 6, 2021
@jtama
Copy link

jtama commented Jun 7, 2021

ppalaga added a commit that referenced this issue Jun 7, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants