Skip to content

Commit

Permalink
Update cpp/src/gandiva/cache.cc
Browse files Browse the repository at this point in the history
Co-authored-by: Antoine Pitrou <pitrou@free.fr>
  • Loading branch information
zanmato1984 and pitrou committed May 14, 2024
1 parent 0b491bc commit eaaa659
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp/src/gandiva/cache.cc
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ int GetCacheCapacityFromEnvVar() {
env_value.c_str(), env_value.size(), &capacity);
if (!ok || capacity <= 0) {
ARROW_LOG(WARNING) << "Invalid cache size provided in " << kCacheCapacityEnvVar
<< "Using default cache size: " << kDefaultCacheSize;
<< ". Using default cache size: " << kDefaultCacheSize;
return kDefaultCacheSize;
}
return capacity;
Expand Down

0 comments on commit eaaa659

Please sign in to comment.