Skip to content

Commit a2843d3

Browse files
committed
chore: fix
1 parent 7256f36 commit a2843d3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

scripts/fetch-dashboard-assets.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function retry_fetch() {
2323
local url=$1
2424
local filename=$2
2525

26-
curl --connect-timeout 10 --retry 3 -fsSL $url --output $filename || {
26+
curl --connect-timeout 30 --max-time 60 --retry 3 -fsSL $url --output $filename || {
2727
echo "Failed to download $url"
2828
echo "You may try to set http_proxy and https_proxy environment variables."
2929
if [[ -z "$GITHUB_PROXY_URL" ]]; then

src/common/meta/src/wal_options_allocator.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,10 @@ use crate::error::{EncodeWalOptionsSnafu, InvalidTopicNamePrefixSnafu, Result};
3030
use crate::key::TOPIC_NAME_PATTERN_REGEX;
3131
use crate::kv_backend::KvBackendRef;
3232
use crate::leadership_notifier::LeadershipChangeListener;
33-
pub use crate::wal_options_allocator::topic_creator::{
33+
pub use topic_creator::{
3434
build_kafka_client, build_kafka_topic_creator,
3535
};
36-
use crate::wal_options_allocator::topic_pool::KafkaTopicPool;
36+
use topic_pool::KafkaTopicPool;
3737

3838
/// Allocates wal options in region granularity.
3939
#[derive(Default, Debug)]

0 commit comments

Comments
 (0)