YARN-6770. A small mistake in the example of TimelineClient. Contributed by Jinjiang Ling.
This commit is contained in:
parent
626d730bfc
commit
ba5b056e8a
@ -274,7 +274,7 @@ Here is an example:
|
||||
|
||||
try {
|
||||
TimelineDomain myDomain = new TimelineDomain();
|
||||
myDomain.setID("MyDomain");
|
||||
myDomain.setId("MyDomain");
|
||||
// Compose other Domain info ....
|
||||
|
||||
client.putDomain(myDomain);
|
||||
@ -282,7 +282,7 @@ Here is an example:
|
||||
TimelineEntity myEntity = new TimelineEntity();
|
||||
myEntity.setDomainId(myDomain.getId());
|
||||
myEntity.setEntityType("APPLICATION");
|
||||
myEntity.setEntityID("MyApp1")
|
||||
myEntity.setEntityId("MyApp1");
|
||||
// Compose other entity info
|
||||
|
||||
TimelinePutResponse response = client.putEntities(entity);
|
||||
|
Loading…
Reference in New Issue
Block a user