Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: d31e8f4a6d274c30d5c4a6322f7c80235b01494e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
The use of the TimeServiceConosumer.generic.etc.product relies on the presence of the 
org.eclipse.ecf.provider.etcd discovery provider.  This bundle is available 
here:  https://github.com/ECF/etcd-provider/tree/master/bundles/org.eclipse.ecf.provider.etcd

It also assumes that an etcd server is running on 127.0.0.1 at port 2379.  The system properties
in the product config are currently set to `127.0.0.1 (localhost) and port 2379 via:

-Decf.discovery.etcd.hostname=127.0.0.1
-Decf.discovery.etcd.port=2379

These can be changed in the product config or the generated launch config if desired to
point at some other etcd server.

There is a public etcd server for the ECF project available inconsistently at:

-Decf.discovery.etcd.hostname=disco.ecf-project.org
-Decf.discovery.etcd.port=2379

Use at your own risk.

Back to the top