Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
Signed-off-by: Xin Li <[email protected]>
  • Loading branch information
xin-hedera committed Jan 30, 2025
1 parent ea1c0ce commit 699e255
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import org.springframework.validation.annotation.Validated;

@Component("blockPollerProperties")
@ConfigurationProperties("hedera.mirror.importer.poller.block")
@ConfigurationProperties("hedera.mirror.importer.downloader.block")
@Data
@RequiredArgsConstructor
@Validated
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,12 @@
import java.util.Arrays;
import java.util.function.Function;
import java.util.stream.Collectors;
import org.springframework.boot.autoconfigure.condition.ConditionalOnProperty;
import org.springframework.scheduling.annotation.Scheduled;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;

@ConditionalOnProperty(name = "hedera.mirror.importer.downloader.block.enabled", havingValue = "false")
@Named
public class RecordFileDownloader extends Downloader<RecordFile, RecordItem> {

Expand Down

0 comments on commit 699e255

Please sign in to comment.