-
Notifications
You must be signed in to change notification settings - Fork 7
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
Adds a function to get DYAD file metadata #54
Adds a function to get DYAD file metadata #54
Conversation
31bccd9
to
4b859e1
Compare
@JaeseungYeom @hariharan-devarajan this PR is ready for review. I'm not sure why GitHub is complaining about a conflict in |
Can you list what the changes are? |
src/core/dyad_core.c
Outdated
uint32_t* owner_rank, | ||
flux_future_t** f) | ||
DYAD_CORE_FUNC_MODS dyad_rc_t dyad_kvs_read (const dyad_ctx_t* ctx, | ||
const char* topic, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep the restrict keyword for both ctx and topic
0971943
to
f5776eb
Compare
3ee175c
to
7a4c1d7
Compare
@ilumsden do u know why the CI failed here? |
It seems to be an error from apt. No clue why that would happen. None of my changes touch the tank file, so nothing I've done should cause this |
add |
This PR adds a new function to the Core library:
dyad_get_metadata
. This function accepts a file path as input, and, if metadata about that file is found in the Flux KVS, it will return that metadata to the user.Additionally, this PR adds Python bindings to the new
dyad_get_metadata
function.Due to the Python binding, this PR depends on #27