Skip to content

Commit

Permalink
Merge pull request #363 from ARGOeu/devel
Browse files Browse the repository at this point in the history
Version 2.1.0
  • Loading branch information
themiszamani authored Dec 6, 2022
2 parents 0542a72 + 3d5c95b commit 615f8cb
Show file tree
Hide file tree
Showing 79 changed files with 5,320 additions and 588 deletions.

This file was deleted.

This file was deleted.

4 changes: 2 additions & 2 deletions flink_jobs_v2/ApiResourceManager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
<parent>
<groupId>flink.jobs.v2</groupId>
<artifactId>flink_jobs_v2</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<version>2.0.0</version>
<version>2.1.0</version>
<groupId>api.resource.manager</groupId>
<artifactId>ApiResourceManager</artifactId>
<packaging>jar</packaging>
Expand Down
4 changes: 2 additions & 2 deletions flink_jobs_v2/ProfilesManager/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>flink.jobs.v2</groupId>
<artifactId>flink_jobs_v2</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<groupId>profiles.manager</groupId>
<artifactId>ProfilesManager</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -302,6 +302,26 @@ public HashMap<String, String> getGroupTags(String group, String type, String ho

return null;
}

/**
* Finds in the filtered EndpointItem fList a EndpointItem with specific
* group, type. service, hostname and tag and returns it's value
*
* @param group a group
* @param type a type
* @param hostname a hostname
* @param service a service
* @param tag this is the tag name
* @return return tag value
**/
public String getTag(String group, String type, String hostname, String service, String tag) {
HashMap<String, String> results = this.getGroupTags(group, type, hostname, service);
if (results != null){
return results.get(tag);
}

return null;
}

/**
* counts the items in the filtered list
Expand Down
4 changes: 2 additions & 2 deletions flink_jobs_v2/Timelines/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
<parent>
<groupId>flink.jobs.v2</groupId>
<artifactId>flink_jobs_v2</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
</parent>
<groupId>timeline.manager</groupId>
<artifactId>Timelines</artifactId>
<version>2.0.0</version>
<version>2.1.0</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
Expand Down
Loading

0 comments on commit 615f8cb

Please sign in to comment.