Skip to content

fix: Fix typos #3847

New issue

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

Merged
merged 1 commit into from
Sep 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -209,9 +209,9 @@ public class SchedulerxProperties implements InitializingBean {
private int mapMasterStatusCheckInterval = WorkerConstants.Map_MASTER_STATUS_CHECK_INTERVAL_DEFAULT;

/**
* enableSecondDealyCycleIntervalMs.
* enableSecondDelayCycleIntervalMs.
*/
private boolean enableSecondDealyCycleIntervalMs = false;
private boolean enableSecondDelayCycleIntervalMs = false;

/**
* enableMapMasterFailover.
Expand Down Expand Up @@ -587,12 +587,12 @@ public void setMapMasterStatusCheckInterval(int mapMasterStatusCheckInterval) {
this.mapMasterStatusCheckInterval = mapMasterStatusCheckInterval;
}

public boolean isEnableSecondDealyCycleIntervalMs() {
return enableSecondDealyCycleIntervalMs;
public boolean isEnableSecondDelayCycleIntervalMs() {
return enableSecondDelayCycleIntervalMs;
}

public void setEnableSecondDealyCycleIntervalMs(boolean enableSecondDealyCycleIntervalMs) {
this.enableSecondDealyCycleIntervalMs = enableSecondDealyCycleIntervalMs;
public void setEnableSecondDelayCycleIntervalMs(boolean enableSecondDelayCycleIntervalMs) {
this.enableSecondDelayCycleIntervalMs = enableSecondDelayCycleIntervalMs;
}

public boolean isEnableMapMasterFailover() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
@Configuration(proxyBeanMethods = false)
public class RocketMQBusAutoConfiguration {
/**
* isse: https://github.com/alibaba/spring-cloud-alibaba/issues/2742
* issue: https://github.com/alibaba/spring-cloud-alibaba/issues/2742
* if you want to customize a bean, please use this BeanName {@code RocketMQMessageConverter.DEFAULT_NAME}.
*/
@Bean(RocketMQMessageConverter.DEFAULT_NAME)
Expand Down
Loading