mahgo

Results 19 comments of mahgo

Hi @Kowallskis, When you say log into Applications Manager, do you mean in App Store Connect? My user account is an Admin user. I can't find an Admin tab, unless...

Hi @Kowallskis just wanted to check to see you saw my last comment?

Is changing the Content in [RequestMapper.cs](https://github.com/ThreeMammals/Ocelot/blob/3ef6abd7465fc77632e4b2d5189fbbf47b457867/src/Ocelot/Request/Mapper/RequestMapper.cs#L48-L49) from `var content = new ByteArrayContent(await ToByteArray(request.Body));` to `var content = = new StreamContent(request.Body);` still an issue as per #490? I've tried this to...

I'm using a custom analyzer - I needed to do this to be able to search for words with special characters in them: ``` public class CustomAnalyzer : StandardAnalyzer {...

Woops, I didn't mean to close this one.

I noticed if you save the __Sort_ field with ToLower() on line 1278 of LuceneIndexer, this achieves this. ``` default: field = new Field(x.Key, x.Value, Field.Store.YES, lucenePolicy, Equals(lucenePolicy, Field.Index.NO) ?...

Sorry I don't think I was clear - I added ToLower myself as a temporary solution.

Do you have an example of this? Everything I've tried has not worked.

I'll take a look into fixing it.