micro/server
johnson 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
..
grpc update service not found error tooltip 2019-08-11 19:31:22 +08:00
mock all: replace "pborman/uuid" with "google/uuid" 2018-11-21 17:29:21 +07:00
mucp check in this cruft 2019-06-08 19:40:44 +01:00
context.go Wait() option now accept *sync.WaitGroup 2019-05-27 21:17:57 +08:00
extractor_test.go switch to stdlib context 2018-03-03 11:53:52 +00:00
extractor.go Don't extract repeated value 2019-08-06 14:52:15 +01:00
handler.go add AutoAck support for Server 2019-05-24 20:06:27 +08:00
options.go Add monitor/debug packages 2019-08-06 17:53:14 +01:00
rpc_codec_test.go move transport back 2019-07-09 18:41:26 +01:00
rpc_codec.go move transport back 2019-07-09 18:41:26 +01:00
rpc_handler.go Support endpoint metadata 2016-05-26 18:01:02 +01:00
rpc_request.go move transport back 2019-07-09 18:41:26 +01:00
rpc_response.go Further crufting 2019-01-09 19:28:13 +00:00
rpc_router.go Fix a streaming bug 2019-06-20 12:44:51 +01:00
rpc_server.go Add monitor/debug packages 2019-08-06 17:53:14 +01:00
rpc_stream.go fix broken pipe error 2019-06-03 15:55:47 +01:00
server.go Don't publish the process rpc call and embed the router handler in the network 2019-07-31 16:36:53 +01:00
subscriber.go move all the buffer references to util/buf 2019-07-28 19:33:24 +01:00
wrapper.go move wrapper files 2018-04-14 19:24:17 +01:00