Skip to content

Commit

Permalink
Dependabot/maven/com.redhat.red.build kojiji 2.13 (#263)
Browse files Browse the repository at this point in the history
* Bump kojiji from 2.12 to 2.13

Bumps [kojiji](https://github.com/release-engineering/kojiji) from 2.12 to 2.13.
- [Release notes](https://github.com/release-engineering/kojiji/releases)
- [Commits](release-engineering/kojiji@kojiji-2.12...kojiji-2.13)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Update to use org.commonjava.o11yphant.metrics.api.MetricRegistry

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
  • Loading branch information
dwalluck and dependabot-preview[bot] committed Nov 3, 2020
1 parent 8f5e0bb commit 0931cf1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
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

0 comments on commit 0931cf1

Please sign in to comment.