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

Dependabot/maven/com.redhat.red.build kojiji 2.13 #263

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@
import java.util.concurrent.TimeUnit;
import java.util.stream.Collectors;

import org.commonjava.o11yphant.metrics.api.MetricRegistry;
import org.commonjava.util.jhttpc.auth.MemoryPasswordManager;
import org.commonjava.util.jhttpc.auth.PasswordManager;

import com.codahale.metrics.MetricRegistry;
import com.redhat.red.build.koji.KojiClient;
import com.redhat.red.build.koji.KojiClientException;
import com.redhat.red.build.koji.KojiClientHelper;
Expand Down Expand Up @@ -60,8 +60,11 @@ public final class KojiClientSession extends KojiClient implements ClientSession

private final KojiClientHelper helper;

public KojiClientSession(KojiConfig config, PasswordManager passwordManager, ExecutorService executorService)
throws KojiClientException {
public KojiClientSession(
KojiConfig config,
PasswordManager passwordManager,
ExecutorService executorService,
com.codahale.metrics.MetricRegistry registry) throws KojiClientException {
super(config, passwordManager, executorService);
helper = new KojiClientHelper(this);
}
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@
<version.com.j2html>1.4.0</version.com.j2html>
<version.com.mycila>4.0.rc2</version.com.mycila>
<version.com.puppycrawl.tools>8.37</version.com.puppycrawl.tools>
<version.com.redhat.red.build.kojiji>2.12</version.com.redhat.red.build.kojiji>
<version.com.redhat.red.build.kojiji>2.13</version.com.redhat.red.build.kojiji>
<version.com.spotify.hamcrest>1.2.0</version.com.spotify.hamcrest>
<version.commons-codec>1.15</version.commons-codec>
<version.commons-io>2.8.0</version.commons-io>
Expand Down