Merge pull request #504 from dpaulat/hotfix/level2-fixes

Level 2 AWS Bucket Name Update
This commit is contained in:
Dan Paulat 2025-09-07 08:44:57 -05:00 committed by GitHub
commit f8ebd265e0
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 10 additions and 2 deletions

View file

@ -118,7 +118,7 @@ public:
void RefreshData();
void RefreshDataSync();
boost::asio::thread_pool providerThreadPool_ {1u};
boost::asio::thread_pool providerThreadPool_ {2u};
const std::string radarId_;
const common::RadarProductGroup group_;
@ -1272,6 +1272,11 @@ void RadarProductManagerImpl::PopulateLevel2ProductTimes(
level2ProductRecordMutex_,
time,
update);
PopulateProductTimes(level2ChunksProviderManager_,
level2ProductRecords_,
level2ProductRecordMutex_,
time,
update);
}
void RadarProductManagerImpl::PopulateLevel3ProductTimes(

View file

@ -55,6 +55,9 @@ public:
animationTimer_.cancel();
animationTimerLock.unlock();
selectThreadPool_.stop();
playThreadPool_.stop();
selectThreadPool_.join();
playThreadPool_.join();
}

View file

@ -18,7 +18,7 @@ static const std::string logPrefix_ =
"scwx::provider::aws_level2_data_provider";
static const auto logger_ = util::Logger::Create(logPrefix_);
static const std::string kDefaultBucketName_ = "noaa-nexrad-level2";
static const std::string kDefaultBucketName_ = "unidata-nexrad-level2";
static const std::string kDefaultRegion_ = "us-east-1";
class AwsLevel2DataProvider::Impl