Merge pull request #36 from ityuhui/yh-multi-thread-support-experiment

Support multi-thread
This commit is contained in:
Kubernetes Prow Robot
2020-11-01 12:12:52 -08:00
committed by GitHub
10 changed files with 12 additions and 0 deletions

1
.gitignore vendored
View File

@@ -1,5 +1,6 @@
kubernetes/build/
.vs/
.vscode/
# Prerequisites
*.d

View File

@@ -78,6 +78,7 @@ list all pods:
basePath = NULL;
sslConfig = NULL;
apiKeys = NULL;
apiClient_unsetupGlobalEnv();
```
list all pods in cluster:
@@ -121,6 +122,7 @@ list all pods in cluster:
basePath = NULL;
sslConfig = NULL;
apiKeys = NULL;
apiClient_unsetupGlobalEnv();
```

View File

@@ -59,6 +59,7 @@ int main(int argc, char *argv[])
basePath = NULL;
sslConfig = NULL;
apiKeys = NULL;
apiClient_unsetupGlobalEnv();
return 0;
}

View File

@@ -96,5 +96,7 @@ int main(int argc, char *argv[])
apiClient_free(k8sApiClient);
k8sApiClient = NULL;
apiClient_unsetupGlobalEnv();
return 0;
}

View File

@@ -58,6 +58,7 @@ int main(int argc, char *argv[])
basePath = NULL;
sslConfig = NULL;
apiKeys = NULL;
apiClient_unsetupGlobalEnv();
return 0;
}

View File

@@ -63,6 +63,7 @@ int main(int argc, char *argv[])
apiClient_free(k8sApiClient);
k8sApiClient = NULL;
apiClient_unsetupGlobalEnv();
return rc;
}

View File

@@ -60,6 +60,7 @@ int main(int argc, char *argv[])
basePath = NULL;
sslConfig = NULL;
apiKeys = NULL;
apiClient_unsetupGlobalEnv();
return 0;
}

View File

@@ -59,6 +59,7 @@ int main(int argc, char *argv[])
basePath = NULL;
sslConfig = NULL;
apiKeys = NULL;
apiClient_unsetupGlobalEnv();
return 0;
}

View File

@@ -59,6 +59,7 @@ int main(int argc, char *argv[])
basePath = NULL;
sslConfig = NULL;
apiKeys = NULL;
apiClient_unsetupGlobalEnv();
return 0;
}

View File

@@ -105,6 +105,7 @@ int main(int argc, char *argv[])
basePath = NULL;
sslConfig = NULL;
apiKeys = NULL;
apiClient_unsetupGlobalEnv();
return 0;
}