We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
customContext新增结点,值为空字符串,旧版Executor(3.0.0-M5及其以下版本)反序列化该空字符串为Map时报错。
customContext
原因是新版console在保存到ZK时不兼容,旧版console的逻辑是:如果作业配置字段为null,则不保存或不更新。 而新版本console的逻辑是:如果作业配置字段为null,则新增或更新结点,值为空字符串。
修复方式:
"{}"
shardingItemParameters
""
The text was updated successfully, but these errors were encountered:
#570 fix customContext json deserialize error for old executor
e9a0813
#570 fix for branch 3.3.1
96bda95
heziai
No branches or pull requests
customContext
新增结点,值为空字符串,旧版Executor(3.0.0-M5及其以下版本)反序列化该空字符串为Map时报错。原因是新版console在保存到ZK时不兼容,旧版console的逻辑是:如果作业配置字段为null,则不保存或不更新。 而新版本console的逻辑是:如果作业配置字段为null,则新增或更新结点,值为空字符串。
修复方式:
customContext
默认值改为"{}"
。 还有shardingItemParameters
也是类似的问题,将其默认值改为""
。The text was updated successfully, but these errors were encountered: