-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
Fix glog parse error #4887
Fix glog parse error #4887
Conversation
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: josedonizetti The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
7b901da
to
08c86b4
Compare
@medyagh This fixes the problem on the wdyt? |
Thanks for the fix, I am curious does this fix, affects the -- command line args and --alsologtostderr For example would this command still work. minikube -p p1 kubextl -- something something |
@josedonizetti I think it doens't work when you pass any arguement,
|
one solution would be moving everything to k8s.io/klog, which I recommend, since glog has not been updated in a long time. I did a regex replace all for klog and everything seemed fine except complaining to add logtostderr. but the only thing I didnt know how to fix it was logtostderr with klog. @tstromberg if we move to klog, do you know how to add logtostderr to it ? |
@medyagh interesting! Shouldn’t integration tests get this problem? |
yeah I am puzzeled by it the weird thing is I can not reprodue it, the only thing is, I had some weird profiles set. I am trying to reproduce it |
@josedonizetti I wonder if we need to add the init flag to the docker-machine-drivers too ... or maybe not use glog there |
@josedonizetti here is full history of ops I did, but I can NOT reproduce it, but as we see in the history I did build the binary using your code. however I did NOT rebuild docker-machine-drivers.... @tstromberg what do you think ? how could I not be able to reproduce the exec.fork again: Full operations that produced weird exec-forkclone and build :
Then doing these stuff :
this is were the exec fork error happens
Then after this I could not reproduce it ever again !!!
|
@medyagh Any luck reproducing? I've tried it on both OSX and Linux with old driver version and newer just compiled versions, and not able to reproduce it. |
I can not reproduce it, it is one of the greatest mystries of this week ! I really wanna find out why ! because according to my history it did happen ! my only possible hypothesis is , it might be to be related to how we build the docker-machine-drivers (given the recent issue we saw today) #4909 I believe if we find the answer to this mystery we can prevent more unwanted things form happening ! |
Fixes #4866