Skip to content

Commit c7ca96c

Browse files
authored
Removed printf lines instead of commenting.
1 parent ccf8dda commit c7ca96c

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

kubernetes/src/generic.c

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,11 +56,7 @@ char* callInternal(genericClient_t *client,
5656
{
5757
apiClient_invoke(client->client, path, queryParameters, headerParameters, formParameters, headerType, contentType, body, method);
5858

59-
if (client->client->response_code == 200) {
60-
//printf("%s\n","OK");
61-
}
6259
if (client->client->response_code == 401) {
63-
//printf("%s\n","Unauthorized");
6460
return NULL;
6561
}
6662
char* elementToReturn = strndup((char*)client->client->dataReceived, client->client->dataReceivedLen);
@@ -138,7 +134,6 @@ char* Generic_createNamespacedResource(genericClient_t *client, const char *ns,
138134
char* Generic_createResource(genericClient_t *client, const char* body) {
139135
char path[128];
140136
makeResourcePath(path, client, "");
141-
//printf("%s\n", path);
142137
return callSimplifiedInternal(client, path, "POST", body);
143138
}
144139

0 commit comments

Comments
 (0)