Shane McDonald

Results 94 comments of Shane McDonald

I hacked something together that allows me to insert images at the caret position. Until something like this is implemented, here is what I did in case it helps anyone....

Sure, I didnt convert it by hand, but used http://js2coffee.org/. The output looks pretty readable. ``` javascript var insertAtCaret, setUpPhotoUploads; setUpPhotoUploads = function() { return $('body.admin_posts input#add_photo').change(function(e) { var formData;...

This doesnt seem like it would scale very well. What about scenarios where jobs talk to several thousand hosts?

Can you make the PR title a little more descriptive? Remember that these end up in our release notes.

Hey Sean - thanks for all the good work. One request - we use PR titles to generate the release notes for AWX. Can you reword the titles on all...

Currently playing around with this PR and am seeing this in my logs when trying to cancel jobs: ``` tools_awx_1 | 2022-08-25 15:33:05,375 ERROR [0d2b5791] awx.main.models.unified_jobs could not reach dispatcher...

Does it work if you remove the quotes from the values for `AUTH_LDAP_USER_SEARCH` and `AUTH_LDAP_GROUP_SEARCH`?

From reading the docs, what about: ``` - setting: AUTH_LDAP_GROUP_TYPE value: ActiveDirectoryGroupType() ```

We recently saw this in an AKS deployment. I've verified a workaround by setting `kubelet --container-log-max-size` to a higher number, or using `containerLogMaxSize` in a kubelet config file. - https://kubernetes.io/docs/reference/command-line-tools-reference/kubelet/...

I'm not sure how we would fix this without completely rearchitecting things to not rely on the kubernetes logging system. We don't have any plans to do this right now.