1
0
mirror of https://github.com/go-micro/go-micro.git synced 2025-06-24 22:26:54 +02:00
Commit Graph

35 Commits

Author SHA1 Message Date
bdd9ec560b strip sub comments 2020-01-19 13:47:14 +00:00
0c03bf064b only connect broker if there are subscribers 2020-01-19 13:45:28 +00:00
fc08a9146c Add broker comments on server subscribe 2020-01-19 01:16:36 +00:00
13d1d2fa08 hard stop if graceful stop fails after 1 second 2020-01-18 10:18:23 +00:00
fd6eb23307 do not wait to stop 2020-01-18 00:58:27 +00:00
f4fb923fb2 pass additional context for broker subscribe (#1105)
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2020-01-10 15:04:15 +00:00
0b8ff3a8bb fix grpc json streaming by setting content sub type (#1089) 2020-01-07 18:37:34 +00:00
225b17559b fix log streaming 2020-01-02 18:23:43 +00:00
c145f355dd Moving to gRPC by default (#1069)
* Step 1

* Fix the test panics
2019-12-29 21:07:55 +00:00
a1eaf9cc20 linting fixes
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2019-12-04 00:22:02 +03:00
bb1a1358b7 Merge pull request #1012 from Astone-Chou/lint
improve code quality
2019-12-03 13:10:04 +00:00
29fb58db39 improve code quality 2019-12-03 20:59:02 +08:00
f9b900b2ca optimize: a better way for return error 2019-12-03 12:47:29 +08:00
080363e8c4 The mega cruft proxy PR (#974)
* the mega cruft proxy PR

* Rename broker id

* add protocol=grpc

* fix compilation breaks

* Add the tunnel broker to the network

* fix broker id

* continue to be backwards compatible in the protocol
2019-11-25 16:31:43 +00:00
49d73faa5f return error to caller on grpc server request processing (#962)
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2019-11-20 10:28:30 +00:00
5ae3e179b9 preallocated slices (#934) 2019-11-11 00:03:51 +00:00
c14bf5dc4e improve the log of panic recovering (#906) 2019-11-02 23:08:54 +00:00
f88518d994 used gofmt with -s flag on whole project 2019-11-01 15:07:53 +00:00
c1c173dfe5 recover handler if panic 2019-09-11 00:40:40 +08:00
ba99f037fb Lock started flag when changing it. 2019-08-23 15:07:08 +01:00
80dc0b97a9 Make server starts and stops idempotent 2019-08-23 15:00:57 +01:00
de34f259ba update service not found error tooltip
fixing test failed issue

change back error type
change registry.ErrNotFound back to selector.ErrNotFound

change back error type
change registry.ErrNotFound back to selector.ErrNotFound

remove the single node tunnel test

Fix read yaml config from memory

package main

import (
	"fmt"

	"github.com/micro/go-micro/config"
	"github.com/micro/go-micro/config/source/memory"
)

var configData = []byte(`
---
a: 1234
`)

func main() {
	memorySource := memory.NewSource(
		memory.WithYAML(configData),
	)
	// Create new config
	conf := config.NewConfig()

	// Load file source
	conf.Load(memorySource)

	fmt.Println(string(conf.Bytes()))
}
2019-08-11 19:31:22 +08:00
3adce58eb2 Add monitor/debug packages 2019-08-06 17:53:14 +01:00
beffa625f8 fix broker log line 2019-08-06 12:25:51 +01:00
1217ca94b1 bunch of other ipv6 fixes
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2019-07-18 08:59:53 +03:00
e688ab0a45 fix ipv6 addr parsing and using
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
2019-07-17 12:20:29 +03:00
e0bf1c2283 Remove Port from registry 2019-07-08 08:01:42 +01:00
c1097a4509 strip broker address 2019-07-07 12:33:47 +01:00
d8e998ad85 add peer in context 2019-06-27 14:53:01 +01:00
9630e153a5 fix grpc proto wrapper 2019-06-27 13:08:06 +01:00
d3a6297b17 Add working grpc proxy config 2019-06-18 18:51:52 +01:00
f65694670e add cruft 2019-06-17 20:05:58 +01:00
ed4bce3285 check in this cruft 2019-06-08 19:40:44 +01:00
44b17b7e4b strip use of cmd 2019-06-03 19:07:09 +01:00
b42b6fa0fc Further consolidate the libraries 2019-06-03 18:44:43 +01:00