-
Notifications
You must be signed in to change notification settings - Fork 18
Initial vendoring mock-up #109
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
base: master
Are you sure you want to change the base?
Conversation
@@ -73,22 +79,39 @@ def jobparameter_from_json(json_data): | |||
:param dict json_data: The JSON specification of an AddJobParameter or an | |||
ExtendedJobParameter or a JobTemplate | |||
""" | |||
# json_data = templates.convert_blob_source_to_http_url(json_data) |
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.
Need to uncomment this before merge, but was required for POC that this would have worked with last API
1fd9d63
to
5df0fb9
Compare
ee8ccd5
to
36d02c4
Compare
1 similar comment
6629782
to
afb6609
Compare
61ab985
to
be1b5ef
Compare
return convert_blobs_to_resource_files(blobs, resource_file) | ||
if resource_file.source.url: | ||
# TODO: Input data from an arbitrary HTTP GET source | ||
raise ValueError('Not implemented') |
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.
Maybe change to "Not supported with source.url"?
raise ValueError('Not implemented') | ||
raise ValueError('Malformed ResourceFile') | ||
if hasattr(resource_file, 'source') and resource_file.source: | ||
if resource_file.source.file_group: |
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.
For latest cli, can we just call native batch feature instead of client work?
Not ready for merge.
Currently has a mock-up as if we implemented it for the last REST API for POC, but we will likely want to start with the current API.