Chris McIntosh

Results 13 comments of Chris McIntosh

A couple issues with your code @Pawper You don't need to encode the search string, and the `q=` is redundant. This should work ```js const { Octokit } = require("octokit");...

Hey @g-hoang looks like if you replace your header with this it works ``` headers: { "If-None-Match": cachedData.headers.etag.split('"')[1], } ``` Looks like it just doesn't like the stringify

oh weird @g-hoang, well let me know if it still doesn't work.

CRON is configurable here https://github.com/github/github-team-sync/blob/main/.env.example.aad#L77 Is this not what you are looking for?

There is no active roadmap, we absolutely would take pull requests if you want to contribute anything.

Thanks @anonymousr007, in many places we log the exception directly. The message that the exception throws are things like "mail" or other tersely worded errors. See https://github.com/github/github-team-sync/blob/a18ca46a12b251c27e0582f769e073e0a0d24fad/githubapp/ldap.py#L87 It looks like...

Good questions, some thoughts: > * Does the "all" target apply to other commands? If so: I think it would be good to make it consistent across commands if we...

Do you know if we have any documentation I could follow to add the methods? @carlosmn

Ah thank you @ethomson maybe I will hold off then. I am trying to debug intermittent clone errors with Rugged, was hoping for `GIT_TRACE` and `GIT_TRACE_PACKET` type of data.

Adding my 2 cents as well, we want to specifically not run as root so the workaround doesn't work in our case. We figured any other way around this?