https://github.com/coreos/etcd

sort by:
Revision Author Date Message Commit Date
e3c9022 *: bump to v2.0.6 23 March 2015, 20:52:00 UTC
52a2d14 migrate: remove starter code It has been moved to github.com/coreos/etcd-starter. 21 March 2015, 18:15:26 UTC
f53d550 store: fixed clone error for store stats. 21 March 2015, 18:14:06 UTC
63b799b migrate: detect version 2.0.1 Without this code a second start will crash: ``` $ ./bin/etcd -name foobar --data-dir=foobar 2015/03/18 18:06:28 starter: detect etcd version 2.0.1 in foobar 2015/03/18 18:06:28 starter: unhandled etcd version in foobar panic: starter: unhandled etcd version in foobar goroutine 1 [running]: log.Panicf(0x594770, 0x25, 0x208927c70, 0x1, 0x1) /usr/local/go/src/log/log.go:314 +0xd0 github.com/coreos/etcd/migrate/starter.checkInternalVersion(0x20889a480, 0x0, 0x0) /Users/philips/src/github.com/coreos/etcd/gopath/src/github.com/coreos/etcd/migrate/starter/starter.go:160 +0xf2f github.com/coreos/etcd/migrate/starter.StartDesiredVersion(0x20884a010, 0x3, 0x3) /Users/philips/src/github.com/coreos/etcd/gopath/src/github.com/coreos/etcd/migrate/starter/starter.go:77 +0x2a9 main.main() /Users/philips/src/github.com/coreos/etcd/gopath/src/github.com/coreos/etcd/main.go:46 +0x25e goroutine 9 [syscall]: os/signal.loop() /usr/local/go/src/os/signal/signal_unix.go:21 +0x1f created by os/signal.init·1 /usr/local/go/src/os/signal/signal_unix.go:27 +0x35 ``` 21 March 2015, 18:13:55 UTC
697883f etcdmain: let user provide a name w/o initial-cluster update Currently this doesn't work if a user wants to try out a single machine cluster but change the name for whatever reason. This is because the name is always "default" and the ``` ./bin/etcd -name 'baz' ``` This solves our problem on CoreOS where the default is `ETCD_NAME=%m`. 21 March 2015, 18:13:42 UTC
f794f87 Documentation: fixup grammar around the unsafe flags 21 March 2015, 18:13:28 UTC
0847986 etcdmain: identify data dir type 21 March 2015, 18:12:18 UTC
9ea80c6 raft: fix godoc about starting a node 21 March 2015, 18:11:21 UTC
02fb648 etcdmain: verify heartbeat and election flag 21 March 2015, 18:11:09 UTC
4c9e168 pkg/flags: Add support for IPv6 addresses Support IPv6 address for ETCD_ADDR and ETCD_PEER_ADDR pkg/flags: Support IPv6 address for ETCD_ADDR and ETCD_PEER_ADDR pkg/flags: tests for IPv6 addr and bind-addr flags pkg/flags: IPAddressPort.Host: do not enclose IPv6 address in square brackets pkg/flags: set default bind address to [::] instead of 0.0.0.0 pkg/flags: we don't need fmt any more also, one minor fix: net.JoinHostPort takes string as a port value pkg/flags: fix ipv6 tests pkg/flags: test both IPv4 and IPv6 addresses in TestIPAddressPortString etcdmain: test: use [::] instead of 0.0.0.0 21 March 2015, 18:05:20 UTC
0fb9362 *: bump to v2.0.5+git 12 March 2015, 00:00:51 UTC
9481945 *: bump to v2.0.5 11 March 2015, 18:33:43 UTC
e13b09e wal: fix ReleaseLockTo ReleaseLockTo should not release the lock on the WAL segment that is right before the given index. When restarting etcd, etcd needs to read from the WAL segment that has a smaller index than the snapshot index. The correct behavior is that ReleaseLockTo releases the locks w is holding so that w only holds one lock that has an index smaller than the given index. 10 March 2015, 16:45:46 UTC
78e0149 raft: do not reset vote if term is not changed raft MUST keep the voting information for the same term. reset should not reset vote if term is not changed. 10 March 2015, 16:42:45 UTC
4c86ab4 pkg/transport: fix downgrade https to http bug in transport If the TLS config is empty, etcd downgrades https to http without a warning. This commit avoid the downgrade and stoping etcd from bootstrap if it cannot listen on TLS. 10 March 2015, 16:39:01 UTC
59327ba pkg/transport: set the maxIdleConnsPerHost to -1 for transport that are using timeout connections, we set the maxIdleConnsPerHost to -1. The default transport does not clear the timeout for the connections it sets to be idle. So the connections with timeout cannot be reused. 10 March 2015, 16:38:39 UTC
62ed1eb Documentation: fix "Missing infra1=" Documentation: fix "Missing infra1=" 10 March 2015, 16:38:27 UTC
cea3448 *: bump to v2.0.4+git 27 February 2015, 20:25:50 UTC
1a2c6d3 *: bump to v2.0.4 27 February 2015, 06:01:24 UTC
ecf7c27 Merge pull request #2374 from wellbehavedsoftware/fix-2373 etcdtcl: fix etcdctl cluster-health ignores SSL settings 25 February 2015, 15:44:10 UTC
05ecdbc etcdtcl: fix etcdctl cluster-health ignores SSL settings etcdctl reconnects to the leader, but was not picking up ssl settings in this case, which causes it to show unhealthy when this is not the case. Fixes #2373 25 February 2015, 12:19:07 UTC
6648b7e Merge pull request #2363 from yichengq/329 migrate/starter: fix v2 data dir checking 25 February 2015, 06:44:10 UTC
194105e Merge pull request #2369 from jonsyu1/master Documentation fixes for proxy 25 February 2015, 05:39:20 UTC
31bfffa Documentation: standardize on url over URL url and URL both appear in this doc. Choose url due to higher frequency 24 February 2015, 21:26:27 UTC
1fbaf9d Documentation: fix discovery flag for proxy docs It seems that the -discovery flag used to be -discovery-url. Updated this to use the currently documented and supported -discovery flag. 24 February 2015, 21:25:18 UTC
3fd9136 migrate/starter: fix v2 data dir checking 24 February 2015, 19:47:56 UTC
a560c52 Merge pull request #2354 from xiang90/wait_time pkg/wait: add WaitTime 23 February 2015, 22:29:39 UTC
53d20a8 pkg/wait: add WaitTime WaitTime waits on deadline instead of id. 23 February 2015, 22:26:42 UTC
4b72095 Merge pull request #2350 from jonsyu1/master Fixed sample command flags in proxy docs 23 February 2015, 17:19:15 UTC
28e150e Documentation: fix sample command flags for proxy The docs mention the listen-client-urls flag, but the examples use client-listen-urls, which is an invalid flag. 23 February 2015, 16:15:42 UTC
4d04720 Merge pull request #2348 from yichengq/326 etcdserver: fix cluster fallback recovery 21 February 2015, 20:16:08 UTC
e54fdfd Merge pull request #2349 from yichengq/327 rafthttp: fix panic on receiving empty ents 20 February 2015, 23:15:43 UTC
ca39056 rafthttp: fix panic on receiving empty ents 2.0 rc may send empty ents. Fix it for backward compatibility. 20 February 2015, 23:07:27 UTC
cff0057 etcdserver: fix cluster fallback recovery Cluster and transport may recover to old states when new node joins the cluster. Record cluster last modified index to avoid this. 20 February 2015, 22:30:00 UTC
d57e07d Merge pull request #2347 from bdarnell/fix-nyet-test Fix test for existence of go-nyet. 20 February 2015, 19:07:55 UTC
79bc3f4 Fix test for existence of go-nyet. When the file is not found, `which` returns an empty string, which passes the -f test. `command -v` is the most portable alternative to `which` per http://stackoverflow.com/questions/592620/check-if-a-program-exists-from-a-bash-script/677212#677212 20 February 2015, 19:02:43 UTC
d2b0dd2 Merge pull request #2345 from bdarnell/normal-entry-formatter Only use the EntryFormatter for normal entries. 20 February 2015, 19:00:12 UTC
b53dc08 Only use the EntryFormatter for normal entries. ConfChange entries also have a Data field but the application-supplied formatter won't know what to do with them. 20 February 2015, 18:51:14 UTC
0ea2173 Merge pull request #2343 from xiang90/fix_kill osutil: pid 1 should exit directly instead of trying to kill itself 20 February 2015, 17:01:49 UTC
7ae94f2 osutil: pid 1 should exit directly instead of trying to kill itself 20 February 2015, 04:27:50 UTC
4228c70 Merge pull request #2341 from yichengq/326 migrate/starter: fix flag parsing 19 February 2015, 19:02:07 UTC
10629c4 migrate/starter: fix flag parsing 19 February 2015, 07:47:52 UTC
e2928cd Merge pull request #2242 from barakmich/acl_doc docs: Add v2 ACL RFC 19 February 2015, 07:31:26 UTC
40365c4 docs: add Security RFC docs: Add v2 ACL RFC Add workflow, fix terminology, make the API JSON, and general cleanup fixes from xiang90s comments add permissions struct update regarding glob matches rename file 18 February 2015, 19:34:00 UTC
88994f9 Merge pull request #2335 from xiang90/dump-tool tool: dump tool supports index 18 February 2015, 17:35:49 UTC
d6f8a30 tool: dump tool supports index 18 February 2015, 17:13:47 UTC
7c65857 Merge pull request #2327 from barakmich/remove_shadowing *: remove shadowing of variables from etcd and add travis test 17 February 2015, 22:46:41 UTC
92dca0a *: remove shadowing of variables from etcd and add travis test We've been bitten by this enough times that I wrote a tool so that it never happens again. 17 February 2015, 21:31:42 UTC
0a57074 Merge pull request #2326 from yichengq/325 migrate/functional: fix `go build` failure 17 February 2015, 18:46:39 UTC
90b06f8 migrate/functional: fix `go build` failure 17 February 2015, 18:35:30 UTC
66199af Merge pull request #2322 from kelseyhightower/add-etcd-docker-guide doc: add etcd docker guide 16 February 2015, 20:43:17 UTC
217a1f0 doc: add etcd docker guide Fixes #2253 16 February 2015, 19:44:41 UTC
def6207 Merge pull request #2320 from xiang90/fix_error etcdserver: fix error message when valide the discovery cluster 16 February 2015, 17:53:24 UTC
beb44ef etcdserver: fix error message when valide the discovery cluster 16 February 2015, 17:53:01 UTC
d1ed54b Merge pull request #2317 from zhangbaitong/master docs:small fix 16 February 2015, 16:28:37 UTC
518eb9f docs:small fix Signed-off-by: zhangbaitong <zhangbaitong@163.com> 16 February 2015, 09:54:24 UTC
73e6762 Merge pull request #2313 from xiang90/cluster_mu etcdserver: move the mutex before what it guards 15 February 2015, 07:05:53 UTC
04bd06d etcdserver: move the mutex before what it guards 15 February 2015, 06:26:12 UTC
29f05bb Merge pull request #2307 from xiang90/refactor_cluster etcdserver: getOtherPeerURLs -> getRemotePeerURLs 15 February 2015, 04:59:38 UTC
c5ca121 etcdserver: GetClusterFromPeers -> GetClusterFromRemotePeers 14 February 2015, 03:05:29 UTC
f754091 etcdserver: getOtherPeerURLs -> getRemotePeerURLs 14 February 2015, 02:56:45 UTC
0fcbadc Merge pull request #2305 from xiang90/fix_win osutil: fix win build 14 February 2015, 00:39:07 UTC
e44dc0f osutil: fix win build 14 February 2015, 00:33:39 UTC
4d728cc *: bump to v2.0.3 13 February 2015, 23:27:24 UTC
f7998bb Merge pull request #2304 from xiang90/fix_discovery_validation etcdserver: validate discovery cluster 13 February 2015, 22:41:09 UTC
cfa7ab6 etcdserver: validate discovery cluster 13 February 2015, 22:32:24 UTC
b59390c Merge pull request #2293 from barakmich/etcd_underscore migrate: stop deleting _etcd 13 February 2015, 22:10:14 UTC
fdebf2b fix parent references 13 February 2015, 21:54:15 UTC
e9f4be4 migrate: decrease memory usage (only duplicate machines) 13 February 2015, 20:26:54 UTC
6d9d7b4 Merge pull request #2302 from xiang90/fix_travis integration: wait for slow travis 13 February 2015, 19:49:37 UTC
163ea3f integration: wait for slow travis 13 February 2015, 19:41:03 UTC
ea1e54b Merge pull request #2291 from ArtfulCoder/master Added go build flag '-installsuffix cgo' to create a static library for etcd and etcdctl 13 February 2015, 19:23:03 UTC
b31109c Merge pull request #2290 from xiang90/fix_transport etcdserver: recover transport when recovering from a snapshot 13 February 2015, 18:23:29 UTC
7a909c3 Merge pull request #2282 from matishsiao/patch-1 add etcd-console tool to tools list 13 February 2015, 18:20:31 UTC
c16cc3a etcdserver: recover transport when recovering from a snapshot 13 February 2015, 18:16:28 UTC
d7840b7 Merge pull request #2301 from xiang90/fix_snap integration: fix test 13 February 2015, 18:03:45 UTC
aed2c82 integration: fix test 13 February 2015, 18:02:42 UTC
39ee854 Merge pull request #2300 from xiang90/fix_snap etcdserver: fix snapshot 13 February 2015, 17:56:19 UTC
fbc4c8e etcdserver: fix snapshot 13 February 2015, 17:54:25 UTC
12999ba Merge pull request #2298 from barakmich/issue2295 etcdserver: Unmask the snapshotter. Fixes #2295 13 February 2015, 17:38:58 UTC
a0e3bc9 etcdserver: Unmask the snapshotter. Fixes #2295 13 February 2015, 16:56:00 UTC
b06e43b Merge pull request #2289 from fabxc/feature/graceful_shutdown main: shutdown gracefully. 13 February 2015, 15:34:07 UTC
8bf795d etcdmain/osutil: shutdown gracefully, interrupt handling The functionality in pkg/osutil ensures that all interrupt handlers finish and the process kills itself with the proper signal. Test for interrupt handling added. The server shutsdown gracefully by stopping on interrupt (Issue #2277.) 13 February 2015, 09:28:53 UTC
02c52f1 migrate: stop deleting etcd 13 February 2015, 00:35:33 UTC
daf1a91 Merge pull request #2287 from Amit-PivotalLabs/master rafthttp/transport.go: Fix nil pointer dereference in RemovePeer 12 February 2015, 22:49:12 UTC
317e57a rafthttp: Panic informatively when removing unknown peer ID 12 February 2015, 22:43:44 UTC
5c0d388 Added go build flag '-installsuffix cgo' to create a static library. This is needed when go 1.4 is used to build. 12 February 2015, 22:08:02 UTC
a711844 *: bump to v2.0.2+git 12 February 2015, 19:41:48 UTC
409dace *: bump to v2.0.2 12 February 2015, 19:14:50 UTC
c6cc276 Merge pull request #2286 from barakmich/fix_migrations etcdserver: Canonicalize migrations 12 February 2015, 17:53:33 UTC
cd50f0e etcdserver: Create MemberDir() and base {Snap,WAL}Dir() thereon. Audit DataDir. 12 February 2015, 17:45:19 UTC
fade9b6 etcdserver: Refactor 2.0.1 directory rename into a proper migration fix all instances fix detection test 12 February 2015, 16:53:19 UTC
590205b Merge pull request #2284 from xiang90/cleanup Cleanup 12 February 2015, 00:21:10 UTC
163f0f0 etcdserver: cleanup cluster_util 12 February 2015, 00:20:38 UTC
20497f1 etcdserver: move remote cluster retrive to cluster_util.go 11 February 2015, 22:03:14 UTC
4a0887e Merge pull request #2283 from xiang90/etcd-dump etcd dump 11 February 2015, 19:24:05 UTC
161b1d2 tools: etcd-dump-logs tool support dump from a given snapshot file 11 February 2015, 18:50:04 UTC
71bed48 snap: add Read function 11 February 2015, 18:21:19 UTC
fe1d956 *: bump to 2.0.1 11 February 2015, 04:19:35 UTC
fd90ec6 add etcd-console tool to tools list i add etcd-console tool to tools list for reference 11 February 2015, 02:43:21 UTC
back to top