e17825474f
Add context options to the runtime
2020-04-14 12:32:59 +01:00
4e539361fa
strip file
2020-04-12 10:58:12 +01:00
04a5d884da
Move global vars to the top of the src file: conventions
2019-09-23 20:48:25 +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
7314af347b
Set MDNS as default registry
2019-01-15 16:50:37 +00:00
57dcba666e
gossip registry
2018-12-04 16:41:40 +00:00
9968c7d007
Add Init to all things, use init in cmd package to initialise
2018-08-08 18:57:29 +01:00
d0d9582b81
Merge pull request #206 from darren-west/master
...
Added Options() to registry interface
2018-02-19 20:52:28 +00:00
02260dcaa3
Add watch options
2018-02-19 17:12:37 +00:00
d970586a29
Added Options() to registry interface
2017-09-28 11:16:56 +01:00
71d717a06d
strip doc.go files
2016-12-14 15:41:48 +00:00
f088074f29
Registry init
2016-03-15 22:20:21 +00:00
93b923261c
Add ErrNotFound
2016-02-25 12:42:31 +00:00
146701eeaa
Add some comments
2016-01-30 21:13:34 +00:00
5ec9d561a6
meh
2016-01-26 23:32:27 +00:00
be43d827c7
Add String method to all interfaces
2015-12-19 21:56:14 +00:00
d7b3765c71
Allow setting of timeout for registry
2015-12-19 18:28:08 +00:00
d4f3a6070c
Update the watch interface
2015-12-05 01:12:29 +00:00
0320fc1b55
Update registry so version is surfaced
2015-11-08 01:48:48 +00:00
cdf2f2cbcd
Change receiver to handler, breaking change, grrr
2015-06-03 01:25:37 +01:00
09c784d294
add support for streaming requests. cleanup watcher initilisation
2015-06-01 18:55:27 +01:00
36b5ca46fe
Change initialisation and add metadata
2015-05-26 22:39:48 +01:00
7aa2c82ced
Service and node should be structs rather than interface
2015-05-25 22:14:28 +01:00
74fd1fc989
Restructure go-micro layout and plugins
2015-05-23 20:04:16 +01:00
0e7bd77f4c
Allow configurable addresses for everything
2015-05-16 00:34:02 +01:00
52f140da5f
Add support for listing services, very rough
2015-04-03 00:52:49 +02:00
8e55cde513
First
2015-01-13 23:31:27 +00:00