Commit b7e04437 by huangfusuper

重跑错误处理

parent 51ab4063
...@@ -36,7 +36,7 @@ public class NodeVersion implements Serializable { ...@@ -36,7 +36,7 @@ public class NodeVersion implements Serializable {
* 插件端网关令牌 * 插件端网关令牌
*/ */
@ApiModelProperty("插件端网关令牌") @ApiModelProperty("插件端网关令牌")
private String puginToken; private String pluginToken;
/** /**
* 当前节点的失败重试次数 * 当前节点的失败重试次数
......
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<id column="node_version_id" jdbcType="INTEGER" property="nodeVersionId" /> <id column="node_version_id" jdbcType="INTEGER" property="nodeVersionId" />
<result column="node_id" jdbcType="INTEGER" property="nodeId" /> <result column="node_id" jdbcType="INTEGER" property="nodeId" />
<result column="block_strategy" jdbcType="VARCHAR" property="blockStrategy" /> <result column="block_strategy" jdbcType="VARCHAR" property="blockStrategy" />
<result column="pugin_token" jdbcType="VARCHAR" property="puginToken" /> <result column="plugin_token" jdbcType="VARCHAR" property="pluginToken" />
<result column="failed_retry_count" jdbcType="INTEGER" property="failedRetryCount" /> <result column="failed_retry_count" jdbcType="INTEGER" property="failedRetryCount" />
<result column="flow_id" jdbcType="INTEGER" property="flowId" /> <result column="flow_id" jdbcType="INTEGER" property="flowId" />
<result column="flow_version_id" jdbcType="INTEGER" property="flowVersionId" /> <result column="flow_version_id" jdbcType="INTEGER" property="flowVersionId" />
...@@ -45,7 +45,7 @@ ...@@ -45,7 +45,7 @@
</resultMap> </resultMap>
<sql id="Base_Column_List"> <sql id="Base_Column_List">
<!-- generated @mbg.generated date: 2019-12-31 --> <!-- generated @mbg.generated date: 2019-12-31 -->
node_version_id, node_id, block_strategy, pugin_token, failed_retry_count, flow_id, node_version_id, node_id, block_strategy, plugin_token, failed_retry_count, flow_id,
flow_version_id, gateway_token, job_type, handler_name, node_cron, node_desc, node_name, flow_version_id, gateway_token, job_type, handler_name, node_cron, node_desc, node_name,
map_flow_id, node_timeout, is_virtual, plugin_urls, priority, remove_mark, repeat_count, map_flow_id, node_timeout, is_virtual, plugin_urls, priority, remove_mark, repeat_count,
failed_retry_interval, routing_strategy, run_param, run_source_desc, script_urls, failed_retry_interval, routing_strategy, run_param, run_source_desc, script_urls,
...@@ -116,8 +116,8 @@ ...@@ -116,8 +116,8 @@
<if test="blockStrategy != null"> <if test="blockStrategy != null">
block_strategy, block_strategy,
</if> </if>
<if test="puginToken != null"> <if test="pluginToken != null">
pugin_token, plugin_token,
</if> </if>
<if test="failedRetryCount != null"> <if test="failedRetryCount != null">
failed_retry_count, failed_retry_count,
...@@ -226,8 +226,8 @@ ...@@ -226,8 +226,8 @@
<if test="blockStrategy != null"> <if test="blockStrategy != null">
#{blockStrategy,jdbcType=VARCHAR}, #{blockStrategy,jdbcType=VARCHAR},
</if> </if>
<if test="puginToken != null"> <if test="pluginToken != null">
#{puginToken,jdbcType=VARCHAR}, #{pluginToken,jdbcType=VARCHAR},
</if> </if>
<if test="failedRetryCount != null"> <if test="failedRetryCount != null">
#{failedRetryCount,jdbcType=INTEGER}, #{failedRetryCount,jdbcType=INTEGER},
...@@ -344,8 +344,8 @@ ...@@ -344,8 +344,8 @@
<if test="blockStrategy != null"> <if test="blockStrategy != null">
block_strategy = #{blockStrategy,jdbcType=VARCHAR}, block_strategy = #{blockStrategy,jdbcType=VARCHAR},
</if> </if>
<if test="puginToken != null"> <if test="pluginToken != null">
pugin_token = #{puginToken,jdbcType=VARCHAR}, plugin_token = #{pluginToken,jdbcType=VARCHAR},
</if> </if>
<if test="failedRetryCount != null"> <if test="failedRetryCount != null">
failed_retry_count = #{failedRetryCount,jdbcType=INTEGER}, failed_retry_count = #{failedRetryCount,jdbcType=INTEGER},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment