mirror of
https://github.com/opencloud-eu/opencloud.git
synced 2026-02-21 13:09:10 -06:00
remove commented code and add portrange
Signed-off-by: jkoberg <jkoberg@owncloud.com>
This commit is contained in:
@@ -52,7 +52,7 @@ We also suggest to use the last port in your extensions' range as a debug/metric
|
||||
| 9195-9199 | FREE |
|
||||
| 9200-9204 | [proxy]({{< ref "../proxy/_index.md" >}}) |
|
||||
| 9205-9209 | [proxy]({{< ref "../proxy/_index.md" >}}) |
|
||||
| 9210-9214 | [userlog]{{< ref "../userlog/_index.md" >}} |
|
||||
| 9210-9214 | [userlog]({{< ref "../userlog/_index.md" >}}) |
|
||||
| 9215-9219 | [storage-system]({{< ref "../storage-system/_index.md" >}}) |
|
||||
| 9220-9224 | [search]({{< ref "../search/_index.md" >}}) |
|
||||
| 9225-9229 | [audit]({{< ref "../audit/_index.md" >}}) |
|
||||
@@ -61,8 +61,8 @@ We also suggest to use the last port in your extensions' range as a debug/metric
|
||||
| 9240-9244 | [app-registry]({{< ref "../app-registry/_index.md" >}}) |
|
||||
| 9245-9249 | FREE |
|
||||
| 9250-9254 | [ocis server (runtime)](https://github.com/owncloud/ocis/tree/master/ocis/pkg/runtime) |
|
||||
| 9255-9259 | [postprocessing]({{ ref "../postprocessing/_index.md" >}}) |
|
||||
| 9260-9264 | FREE |
|
||||
| 9255-9259 | [postprocessing]({{< ref "../postprocessing/_index.md" >}}) |
|
||||
| 9260-9264 | [clientlog]({{ ref "../clientlog/index.md" }}) |
|
||||
| 9265-9269 | FREE |
|
||||
| 9270-9274 | [eventhistory]({{< ref "../eventhistory/_index.md" >}}) |
|
||||
| 9275-9279 | FREE |
|
||||
|
||||
@@ -43,15 +43,6 @@ func Server(cfg *config.Config) *cli.Command {
|
||||
return err
|
||||
}
|
||||
|
||||
/*
|
||||
grpcClient, err := ogrpc.NewClient(
|
||||
append(ogrpc.GetClientOptions(cfg.GRPCClientTLS), ogrpc.WithTraceProvider(tracerProvider))...,
|
||||
)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
*/ // TODO: remove
|
||||
|
||||
gr := run.Group{}
|
||||
ctx, cancel := func() (context.Context, context.CancelFunc) {
|
||||
if cfg.Context == nil {
|
||||
|
||||
@@ -1,26 +0,0 @@
|
||||
package service_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
"github.com/owncloud/ocis/v2/ocis-pkg/registry"
|
||||
mRegistry "go-micro.dev/v4/registry"
|
||||
|
||||
. "github.com/onsi/ginkgo/v2"
|
||||
. "github.com/onsi/gomega"
|
||||
)
|
||||
|
||||
func init() {
|
||||
registry.Configure("memory")
|
||||
r := registry.GetRegistry()
|
||||
service := registry.BuildGRPCService("com.owncloud.api.gateway", "", "", "")
|
||||
service.Nodes = []*mRegistry.Node{{
|
||||
Address: "any",
|
||||
}}
|
||||
|
||||
_ = r.Register(service)
|
||||
}
|
||||
func TestSearch(t *testing.T) {
|
||||
RegisterFailHandler(Fail)
|
||||
RunSpecs(t, "Userlog service Suite")
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
package service_test
|
||||
|
||||
// TODO: TEST!
|
||||
Reference in New Issue
Block a user