Fulton Byrne

Results 73 comments of Fulton Byrne
trafficstars

@benoitguigal to fix this do this to your `rebundle` function: ``` var outputs; bundler.plugin('factor-bundle', { outputs: outputs }); function rebundle() { outputs = files.map(function (file) { var name = path.basename(file,...

So my SO solution doesn't work right. Luckily I have another solution in the interim until a PR is made. So try this: Edit [`node_modules/factor-bundle/index.js`](https://github.com/substack/factor-bundle/blob/50f6fcd5c5afb29f5dad65f1fe75e5e7050b8716/index.js#L55) and change From `b.on('reset', addHooks);`...

BTW @benoitguigal and @neilcarpenter nice sites/projects.

Given the log output it would be coming from this function. https://github.com/justwatchcom/elasticsearch_exporter/blob/bbc32de9b976774d2003a65d7fad7d4f5dfb423b/collector/nodes.go#L1801-L1837 Which could be either of these two paths: https://github.com/justwatchcom/elasticsearch_exporter/blob/bbc32de9b976774d2003a65d7fad7d4f5dfb423b/collector/nodes.go#L1806-L1810 Potential Related ElasticSearch Tickets * https://github.com/elastic/elasticsearch/issues/56739

1. [parsing begins](https://github.com/ruby/psych/blob/6333cf8cc365b644fbffd8b122f2e720f5654e77/lib/psych.rb#L401) 2. [parser constructor](https://github.com/ruby/psych/blob/6333cf8cc365b644fbffd8b122f2e720f5654e77/lib/psych/parser.rb#L47-L49) 3. [Handler Abstract Class](https://github.com/ruby/psych/blob/6333cf8cc365b644fbffd8b122f2e720f5654e77/lib/psych/handler.rb) + Handles events on the parse stream. + [`Handler#event_location`](https://github.com/ruby/psych/blob/6333cf8cc365b644fbffd8b122f2e720f5654e77/lib/psych/handler.rb#L246) : my money's on this guy. 4. [Document Stream Handler](https://github.com/ruby/psych/blob/aec5469ef4a784e185e4e18ea542f3b5ef0f602f/lib/psych/handlers/document_stream.rb#L6) +...

It seems like this is manifesting itself in a variety of ways: 1. [colon within string](https://github.com/ruby/psych/issues/190#issuecomment-294355216) 2. [unescaped double quotes within a value](https://github.com/ruby/psych/issues/190#issuecomment-303358082) 3. [not closing your strings](https://github.com/ruby/psych/issues/190#issuecomment-290612339) 4. In...

@Eomm we're looking into the issue, and came up with a work around that might be worth trying. If you're in a `nodejs` runtime, there is a `globalAgent` you can...

I think actually the best way to set specific `fetch` related options is to make a facade `fetcher`: ```javascript function fetcher(resource, options) { return fetch(resource, Object.assign(options, { "keepAlive": true })...

Could some of this be improved if `exec_cmd` streamed command output instead of buffering it into a string? Maybe it can't be rendered asynchronously, but at least it can be...

I went through this myself this week, but didn't know what or why. [KEP-541: External credential providers](https://github.com/kubernetes/enhancements/tree/master/keps/sig-auth/541-external-credential-providers) went GA in 1.22 (https://github.com/kubernetes/kubernetes/pull/102181 https://github.com/kubernetes/kubernetes/pull/102890). KEP-541 moves several credential providers out of...