This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 2023/03/19 16:46:46 ...s/process/manager.go:170:Add() [T] [64171224-61] Start 64171246: GET: /unistack-org/micro/info/refs?service=git-receive-pack (request) | |
| 2023/03/19 16:46:46 [64171246] router: started GET /unistack-org/micro/info/refs?service=git-receive-pack for 93.100.164.244:0 | |
| 2023/03/19 16:46:46 [64171246] router: completed GET /unistack-org/micro/info/refs?service=git-receive-pack for 93.100.164.244:0, 401 Unauthorized in 1.8ms @ repo/http.go:539(rep | |
| o.GetInfoRefs) | |
| 2023/03/19 16:46:46 ...s/process/manager.go:207:remove() [T] [64171246] Done 64171246: GET: /unistack-org/micro/info/refs?service=git-receive-pack | |
| 2023/03/19 16:46:46 ...s/process/manager.go:170:Add() [T] [64171224-61] Start 64171246-2: GET: /unistack-org/micro/info/refs?service=git-receive-pack (request) | |
| 2023/03/19 16:46:46 [64171246-2] router: started GET /unistack-org/micro/info/refs?service=git-receive-pack for 93.100.164.244:0 | |
| 2023/03/19 16:46:46 ...rvices/auth/basic.go:67:Verify() [T] [64171246-2] Basic Authorization: Attempting |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/examples/helloworld/helloworld/helloworld.pb.go b/examples/helloworld/helloworld/helloworld.pb.go | |
| index 2d5cbf5d7805..dd1694a818f7 100644 | |
| --- a/examples/helloworld/helloworld/helloworld.pb.go | |
| +++ b/examples/helloworld/helloworld/helloworld.pb.go | |
| @@ -14,14 +14,13 @@ | |
| // Code generated by protoc-gen-go. DO NOT EDIT. | |
| // versions: | |
| -// protoc-gen-go v1.25.0 | |
| -// protoc v3.14.0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "openapi": "3.0.3", | |
| "info": { | |
| "title": "APIGW spec", | |
| "description": "apigw service", | |
| "version": "0.0.1" | |
| }, | |
| "paths": { | |
| "path": [ | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package multi | |
| import ( | |
| "sync" | |
| "github.com/micro/go-micro/registry" | |
| ) | |
| type multiWatcher struct { | |
| wo registry.WatchOptions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package multi | |
| import ( | |
| "context" | |
| "github.com/micro/go-micro/registry" | |
| ) | |
| type writeKey struct{} | |
| type readKey struct{} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package multi | |
| import ( | |
| "context" | |
| "sync" | |
| "github.com/micro/go-micro/registry" | |
| log "github.com/micro/go-micro/util/log" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax = "proto3"; | |
| package unistack; | |
| option go_package = "unistackpb"; | |
| import "list.proto"; | |
| import "google/api/annotations.proto"; | |
| import "google/protobuf/empty.proto"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package errors | |
| import ( | |
| "encoding/json" | |
| "fmt" | |
| "log" | |
| "net/http" | |
| "github.com/micro/go-micro/errors" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package policy | |
| import ( | |
| "context" | |
| "github.com/micro/go-micro/client" | |
| "github.com/micro/go-micro/server" | |
| "unistack.org/centralv2/service/policy/policypb" | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| package breaker | |
| import ( | |
| "context" | |
| "sync" | |
| "github.com/micro/go-micro/client" | |
| "github.com/micro/go-micro/errors" | |
| "github.com/sony/gobreaker" | |
| ) |
NewerOlder