-
Notifications
You must be signed in to change notification settings - Fork 47
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
issue in postData to support 32bit #199
Comments
This needs to be fixed in the upstream OpenAPI generator: Here is an example PR that you can use as a model: Once that is fixed in the generator, we can regenerate the client. |
The upstream PR OpenAPITools/openapi-generator#16238 is merged. I'd like to regenerate the client now. The project also has a GitHub Action that automatically generates the client library: https://github.com/kubernetes-client/c/actions/workflows/generate.yml that requires maintainer permission to trigger. |
postData in apiClient.c has issues for supporting 32bit:
/* it should add type cast (curl_off_t)
curl_easy_setopt(handle, CURLOPT_POSTFIELDSIZE_LARGE,
(curl_off_t) strlen (bodyParameters));
The text was updated successfully, but these errors were encountered: