Skip to content

Commit

Permalink
[Telegram] Fix autoservice definition
Browse files Browse the repository at this point in the history
  • Loading branch information
avano committed Nov 29, 2022
1 parent d1f4914 commit 6f849b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

import java.io.IOException;

@AutoService(LocalTelegram.class)
@AutoService(Telegram.class)
public class LocalTelegram extends Telegram implements Deployable {

private static final Logger LOG = LoggerFactory.getLogger(LocalTelegram.class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import io.fabric8.openshift.api.model.ImageStream;
import io.fabric8.openshift.api.model.ImageStreamBuilder;

@AutoService(OpenshiftTelegram.class)
@AutoService(Telegram.class)
public class OpenshiftTelegram extends Telegram implements OpenshiftDeployable, WithName {

private static final Logger LOG = LoggerFactory.getLogger(OpenshiftTelegram.class);
Expand Down

0 comments on commit 6f849b7

Please sign in to comment.