Skip to content

Commit

Permalink
rename repo owner
Browse files Browse the repository at this point in the history
  • Loading branch information
tty47 authored Nov 1, 2024
1 parent 14e3ac3 commit 1e013f4
Show file tree
Hide file tree
Showing 16 changed files with 32 additions and 32 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PROJECT_NAME := $(shell basename `pwd`)
REPOSITORY_NAME := $(shell basename `pwd`)
REGISTRY_NAME=ghcr.io/jrmanes
REGISTRY_NAME=ghcr.io/tty47
LOCAL_DEV=local

# Go
Expand Down
6 changes: 3 additions & 3 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
log "github.com/sirupsen/logrus"
"gopkg.in/yaml.v2"

"github.com/jrmanes/torch/config"
handlers "github.com/jrmanes/torch/pkg/http"
"github.com/jrmanes/torch/pkg/k8s"
"github.com/tty47/torch/config"
handlers "github.com/tty47/torch/pkg/http"
"github.com/tty47/torch/pkg/k8s"
)

// ParseFlags parses the command-line flags and reads the configuration file.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/jrmanes/torch
module github.com/tty47/torch

go 1.21

Expand Down
6 changes: 3 additions & 3 deletions pkg/http/handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ import (
"github.com/gorilla/mux"
log "github.com/sirupsen/logrus"

"github.com/jrmanes/torch/config"
"github.com/jrmanes/torch/pkg/db/redis"
"github.com/jrmanes/torch/pkg/nodes"
"github.com/tty47/torch/config"
"github.com/tty47/torch/pkg/db/redis"
"github.com/tty47/torch/pkg/nodes"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/http/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/gorilla/mux"
"github.com/prometheus/client_golang/prometheus/promhttp"

"github.com/jrmanes/torch/config"
"github.com/tty47/torch/config"
)

func Router(r *mux.Router, cfg config.MutualPeersConfig) *mux.Router {
Expand Down
10 changes: 5 additions & 5 deletions pkg/http/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ import (
log "github.com/sirupsen/logrus"
"golang.org/x/sync/errgroup"

"github.com/jrmanes/torch/config"
"github.com/jrmanes/torch/pkg/db/redis"
"github.com/jrmanes/torch/pkg/k8s"
"github.com/jrmanes/torch/pkg/metrics"
"github.com/jrmanes/torch/pkg/nodes"
"github.com/tty47/torch/config"
"github.com/tty47/torch/pkg/db/redis"
"github.com/tty47/torch/pkg/k8s"
"github.com/tty47/torch/pkg/metrics"
"github.com/tty47/torch/pkg/nodes"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/k8s/services.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"

"github.com/jrmanes/torch/pkg/metrics"
"github.com/tty47/torch/pkg/metrics"
)

// RetrieveAndGenerateMetrics retrieves the list of Load Balancers and generates metrics
Expand Down
2 changes: 1 addition & 1 deletion pkg/k8s/statefulsets.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"k8s.io/client-go/kubernetes"
"k8s.io/client-go/rest"

"github.com/jrmanes/torch/pkg/db/redis"
"github.com/tty47/torch/pkg/db/redis"
)

const (
Expand Down
4 changes: 2 additions & 2 deletions pkg/nodes/consensus.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import (

log "github.com/sirupsen/logrus"

"github.com/jrmanes/torch/config"
"github.com/jrmanes/torch/pkg/k8s"
"github.com/tty47/torch/config"
"github.com/tty47/torch/pkg/k8s"
)

var (
Expand Down
2 changes: 1 addition & 1 deletion pkg/nodes/consensus_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/jrmanes/torch/config"
"github.com/tty47/torch/config"
)

func TestSetConsNodeDefault(t *testing.T) {
Expand Down
8 changes: 4 additions & 4 deletions pkg/nodes/da.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ import (

log "github.com/sirupsen/logrus"

"github.com/jrmanes/torch/config"
"github.com/jrmanes/torch/pkg/db/redis"
"github.com/jrmanes/torch/pkg/k8s"
"github.com/jrmanes/torch/pkg/metrics"
"github.com/tty47/torch/config"
"github.com/tty47/torch/pkg/db/redis"
"github.com/tty47/torch/pkg/k8s"
"github.com/tty47/torch/pkg/metrics"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/nodes/da_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/jrmanes/torch/config"
"github.com/tty47/torch/config"
)

func TestHasAddrAlready(t *testing.T) {
Expand Down
4 changes: 2 additions & 2 deletions pkg/nodes/nodes.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package nodes
import (
log "github.com/sirupsen/logrus"

"github.com/jrmanes/torch/config"
"github.com/jrmanes/torch/pkg/k8s"
"github.com/tty47/torch/config"
"github.com/tty47/torch/pkg/k8s"
)

type NodeAddress struct {
Expand Down
4 changes: 2 additions & 2 deletions pkg/nodes/nodes_consumer.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"github.com/adjust/rmq/v5"
log "github.com/sirupsen/logrus"

"github.com/jrmanes/torch/config"
"github.com/jrmanes/torch/pkg/db/redis"
"github.com/tty47/torch/config"
"github.com/tty47/torch/pkg/db/redis"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion pkg/nodes/nodes_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"reflect"
"testing"

"github.com/jrmanes/torch/config"
"github.com/tty47/torch/config"
)

func TestValidateNode(t *testing.T) {
Expand Down
6 changes: 3 additions & 3 deletions pkg/nodes/queue.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import (

log "github.com/sirupsen/logrus"

"github.com/jrmanes/torch/config"
"github.com/jrmanes/torch/pkg/db/redis"
"github.com/jrmanes/torch/pkg/metrics"
"github.com/tty47/torch/config"
"github.com/tty47/torch/pkg/db/redis"
"github.com/tty47/torch/pkg/metrics"
)

var (
Expand Down

0 comments on commit 1e013f4

Please sign in to comment.