Mathew Kamkar

Results 14 comments of Mathew Kamkar

Workaround is to manually install the package and ignoring the missing dependency: ``` apt-get download dsc22 sudo dpkg --force-depends -i dsc22_2.2.7-1_all.deb ``` But it causes problems if you try to...

Seeing the same issue, but my git doesn't output anything about line endings ![screen shot 2017-05-04 at 11 10 50 am](https://cloud.githubusercontent.com/assets/578302/25718369/9b479a4a-30ba-11e7-8842-93f122fa4707.png) ``` ~/s/v/c/c/vxl_mesos (master) $ git --no-pager diff recipes/slave.rb diff...

Updating `golang.org/x/net` worked for me. Put this in your `go.mod` file: ``` replace golang.org/x/net => golang.org/x/net v0.0.0-20200114155413-6afb5195e5aa ```

I was seeing this error on my [Drone](https://drone.io/) build server, running on Kubernetes. By default it users "Docker-in-Docker" (dind) for builds. The error went away after I disabled dind on...

@Zest-nikunj sure. My Drone server was deployed by a Helm chart to a Kubernetes cluster: https://github.com/kubernetes/charts/tree/master/incubator/drone I just redeployed it, setting `dind.enabled` to `false`. I'd imagine if you're not using...

I am seeing the same problem with my Samsung Galaxy S3 running Cyanogenmod 10.1 (Android 4.2.2). Only results for very old Android versions show up with googleplay-api, while Google Play...

Closing this PR as @bekriebel's branch has been merged.

Same thing is happening with SQS, except its causing the pod to go in a CrashLoopBackOff for us: ``` panic: runtime error: invalid memory address or nil pointer dereference [signal...

I added some debug lines, and it turns out the CW client returned by `getCWClient(...)` is `nil` when this happens! The problem is I was using a queueUri that incorrectly...

I'm not too familiar with CRD validation rules. Is it possible to set the validation `oneOf` to be "not empty/blank" instead of `required`? Here's the CRD currently: https://github.com/practo/k8s-worker-pod-autoscaler/blob/master/artifacts/crd.yaml#L42 Would it...