Skip to content
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

fix: use local mapping instead of remote #1430

Merged
merged 18 commits into from
May 27, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
misc: remove arc around mapping source
  • Loading branch information
nichmor committed May 24, 2024
commit 4ee166f99a40da48bcc7e728d3726a4bacd92582
2 changes: 1 addition & 1 deletion src/project/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ pub struct Project {
/// The cache that contains environment variables
env_vars: HashMap<EnvironmentName, Arc<AsyncCell<HashMap<String, String>>>>,
/// The cache that contains mapping
mapping_source: Arc<OnceCell<MappingSource>>,
mapping_source: OnceCell<MappingSource>,
/// The global configuration as loaded from the config file(s)
config: Config,
}
Expand Down
Loading