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

Bug fix write_validity #84

Merged
merged 2 commits into from
Dec 8, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion src/utils/pars_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
function writevalidity end
export writevalidity
function writevalidity(props_db::LegendDataManagement.MaybePropsDB, filekey::FileKey, apply::Vector{String}; category::DataCategoryLike=:all)
remotecall_fetch(_writevalidity_impl, 1, props_db, filekey, apply; category=category)
fhagemann marked this conversation as resolved.
Show resolved Hide resolved
Distributed.remotecall_fetch(_writevalidity_impl, 1, props_db, filekey, apply; category=category)

Check warning on line 41 in src/utils/pars_utils.jl

View check run for this annotation

Codecov / codecov/patch

src/utils/pars_utils.jl#L41

Added line #L41 was not covered by tests
end
const _writevalidity_lock = ReentrantLock()
function _writevalidity_impl(props_db::LegendDataManagement.MaybePropsDB, filekey::FileKey, apply::Vector{String}; category::DataCategoryLike=:all)
Expand Down
1 change: 1 addition & 0 deletions src/utils/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ using JSON
using Dates
using Measurements
using Measurements: ±
import Distributed

using PropertyFunctions: PropertyFunction, @pf, filterby, props2varsyms
using Tables
Expand Down
Loading