Alexandr Marchenko
Alexandr Marchenko
Hello links download page of redis.io `http://download.redis.io/releases/redis-4.0.11.tar.gz` is broken Giving 404 not found error
While trying to wire up everything got an `java.lang.NullPointerException` unfortunately message is empty so there is no way to figure out from where it comes I do have an kafka...
Hello, after looking what `DebugGameState` can do noticed that `gas = 8` does nothing 🤷♂️ also there is no such call in [reference](https://github.com/Blizzard/s2client-api/blob/614acc00abb5355e4c94a1b0279b46e9d845b7ce/src/sc2api/sc2_client.cc#L1045-L1087) cpp implementations. Wondering if this is something...
periodically I do catch following error: ``` 2017-07-29 11:46:43 +0300 [warn]: #0 plugin/output.rb:1096:block in update_retry_state: failed to flush the buffer. retry_time=0 next_retry_seconds=2017-07-29 11:46:43 +0300 chunk="55570d4efaf3ca91e7b235dffef577db" error_class=MultiJson::ParseError error="lexical error: invalid bytes...
Seems to be an overall ruby problem on windows with certificate validation, just wondering is there an easy way to turn off verification? After looking around seems that it is...
reasoning: at moment we can mark endpoint as deprecated in spec but clients wont even notice that with that change generated service method will have `@deprecated` comment which at least...
Sample yml: ```yml loki: enabled: true tolerations: # -- because we are deploying to a system node need this toleration - key: "dedicated.deckhouse.io" operator: "Equal" value: "system" effect: "NoSchedule" persistence:...
I have taken `transformed-server.ts` from examples and make js from it, no other changes **transformed-server.js** ```js const { delegateToSchema, makeExecutableSchema } = require('graphql-tools'); const { ApolloServer } = require('apollo-server'); const...
According to #1 and my founding we gonna need to be able to hide fields exactly inside this transform not before (wont be able to delegate) not after (gateway wont...
**problem** Following example: ```csharp var query = new Query() .Search("is:pr is:open org:whatever", SearchType.Issue) .AllPages() .Select(r => r.Switch(when => when.PullRequest(p => new { p.Title }))) .Compile(); Console.WriteLine(query); ``` fails in runtime...