Skip to content

Commit

Permalink
Change module name to line up with naming convention (#2)
Browse files Browse the repository at this point in the history
argoproj/argo-rollouts#2720

Signed-off-by: mitchell amihod <[email protected]>
  • Loading branch information
meeech authored Apr 14, 2023
1 parent b7efdf9 commit a597a01
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
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/argoproj-labs/sample-rollouts-metric-plugin
module github.com/argoproj-labs/rollouts-plugin-metric-sample-prometheus

go 1.19

Expand Down
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/argoproj-labs/sample-rollouts-metric-plugin/internal/plugin"
"github.com/argoproj-labs/rollouts-plugin-metric-sample-prometheus/internal/plugin"
rolloutsPlugin "github.com/argoproj/argo-rollouts/metricproviders/plugin/rpc"
goPlugin "github.com/hashicorp/go-plugin"
log "github.com/sirupsen/logrus"
Expand All @@ -24,7 +24,7 @@ func main() {
LogCtx: logCtx,
}
// pluginMap is the map of plugins we can dispense.
var pluginMap = map[string]goPlugin.Plugin{
pluginMap := map[string]goPlugin.Plugin{
"RpcMetricProviderPlugin": &rolloutsPlugin.RpcMetricProviderPlugin{Impl: rpcPluginImp},
}

Expand Down

0 comments on commit a597a01

Please sign in to comment.