This is an automated email from the ASF dual-hosted git repository.
leebai pushed a commit to branch dev-1.0.3
in repository https://gitbox.apache.org/repos/asf/incubator-linkis.git
The following commit(s) were added to refs/heads/dev-1.0.3 by this push:
new 37fb9a5 remove monitor module
new cb77108 Merge pull request #1216 from peacewong/dev-1.0.3-codeparser
37fb9a5 is described below
commit 37fb9a5218a58e1c944bce1fa06a5ac430ea6e9e
Author: peacewong <[email protected]>
AuthorDate: Thu Dec 16 20:55:56 2021 +0800
remove monitor module
---
.../linkis-manager/linkis-application-manager/pom.xml | 7 -------
.../manager/engineplugin/common/resource/UserNodeResource.scala | 7 ++++++-
2 files changed, 6 insertions(+), 8 deletions(-)
diff --git
a/linkis-computation-governance/linkis-manager/linkis-application-manager/pom.xml
b/linkis-computation-governance/linkis-manager/linkis-application-manager/pom.xml
index 90d9723..fe4af3a 100644
---
a/linkis-computation-governance/linkis-manager/linkis-application-manager/pom.xml
+++
b/linkis-computation-governance/linkis-manager/linkis-application-manager/pom.xml
@@ -116,13 +116,6 @@
<scope>provided</scope>
</dependency>
- <!-- This package could only be added to one library path of
linkismanager-->
- <dependency>
- <groupId>org.apache.linkis</groupId>
- <artifactId>linkis-manager-monitor</artifactId>
- <version>${linkis.version}</version>
- <scope>compile</scope>
- </dependency>
</dependencies>
diff --git
a/linkis-engineconn-plugins/linkis-engineconn-plugin-framework/linkis-engineconn-plugin-core/src/main/scala/org/apache/linkis/manager/engineplugin/common/resource/UserNodeResource.scala
b/linkis-engineconn-plugins/linkis-engineconn-plugin-framework/linkis-engineconn-plugin-core/src/main/scala/org/apache/linkis/manager/engineplugin/common/resource/UserNodeResource.scala
index 13fd852..57deae6 100644
---
a/linkis-engineconn-plugins/linkis-engineconn-plugin-framework/linkis-engineconn-plugin-core/src/main/scala/org/apache/linkis/manager/engineplugin/common/resource/UserNodeResource.scala
+++
b/linkis-engineconn-plugins/linkis-engineconn-plugin-framework/linkis-engineconn-plugin-core/src/main/scala/org/apache/linkis/manager/engineplugin/common/resource/UserNodeResource.scala
@@ -14,7 +14,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
+
package org.apache.linkis.manager.engineplugin.common.resource
import java.util.Date
@@ -24,6 +24,7 @@ import
org.apache.linkis.manager.common.entity.resource.{NodeResource, Resource,
class UserNodeResource extends NodeResource {
+ private var id: Integer = _
private var user: String = _
private var resourceType: ResourceType = _
private var minResource: Resource = _
@@ -83,4 +84,8 @@ class UserNodeResource extends NodeResource {
override def setUpdateTime(updateTime: Date): Unit = {
this.updateTime = updateTime
}
+
+ override def getId: Integer = id
+
+ override def setId(id: Integer): Unit = this.id = id
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]