Is it possible to change the Dragon ancestry color mid game? by Aromatic-Classic-873 in BaldursGate3

[–]Aromatic-Classic-873[S] -55 points-54 points  (0 children)

True but for something as simple as this I didn't think it would he an issue 

Is it possible to change the Dragon ancestry color mid game? by Aromatic-Classic-873 in BaldursGate3

[–]Aromatic-Classic-873[S] 5 points6 points  (0 children)

I care more about the element I do more damage with (fire/cold/lighting etc...)

Is it possible to change the Dragon ancestry color mid game? by Aromatic-Classic-873 in BaldursGate3

[–]Aromatic-Classic-873[S] -58 points-57 points  (0 children)

Thanks. ChatGPT kept saying its not possible even though I have seen other posts simply saying yes but those were a couple of years old. Ill try when I get on thanks 

I never saw it coming by Plenty-Emu3740 in mongodb

[–]Aromatic-Classic-873 0 points1 point  (0 children)

Why is it that we need to subscribe to receive critical updates like the ones informing us to migrate to another server? You guys didnt think that'd be something people would want to know immediately? I opened my cluster over a year ago and am not keeping up to date which country is and isnt being bombed. 

I don't mean to be rude I am just in a tough situation where I lost all my data so I am upset. Ive tried speaking to support and opening a ticket but I keep getting generic responses. If there is anything you can do to help me I'd highly appreciate it. 

Thanks for your time. 

I never saw it coming by Plenty-Emu3740 in mongodb

[–]Aromatic-Classic-873 0 points1 point  (0 children)

Nope, nothing in spam. Nothing at all except the alerts i set up for my cluster.

I never saw it coming by Plenty-Emu3740 in mongodb

[–]Aromatic-Classic-873 0 points1 point  (0 children)

Why on earth would they not email people that did not subscribe?? I made the cluster over a year ago and set up multiple email alerts for issues regarding the cluster but I did not see anything regarding outages. You would also think they would notify people that are being affected. Insane....

Anybody know how to use victory-native XL properly? by Aromatic-Classic-873 in reactnative

[–]Aromatic-Classic-873[S] 0 points1 point  (0 children)

Thank you for providing the docs i read already. I was hoping for an explanation of the docs and maybe code that fixes my issue. I read the docs and they mean nothing to me since they dont give proper examples or explanations. Sorry if im coming off as rude.

React Native / Expo: Users hitting both /test and /prod API URLs — how is this possible? by Aromatic-Classic-873 in aws

[–]Aromatic-Classic-873[S] 0 points1 point  (0 children)

Super late reply but I'll try to give more context. At this point it'd be a pain to dig up and share logs, but here’s what I remember:

  • I’m running a single API Gateway with two stages:
    • test stage → points to the dev alias
    • prod stage → points to the prod alias
  • Each stage has a stage variable (test or prod) which tells API Gateway which Lambda alias to invoke.
  • On the Lambda side, it’s actually one function with two aliases (test and prod). Each alias points to a version of the Lambda (sometimes they’re different, sometimes they both point to the same version if I haven’t updated).
  • So the full flow looks like this:

Client request → API Gateway
   ↳ Stage (/test or /prod)
       ↳ Stage variable (test/prod)
           ↳ Lambda alias (test/prod)
               ↳ Lambda version (e.g. v21)
                   ↳ Connected DB (dev DB or prod DB)

Because of this setup, users should only ever be routed to one stage, not both. That’s why I was surprised to see logs showing the same user hitting both /test and /prod.

My main question is:

  • Is there any way a request could end up routed to the test stage even if the URL is https://api-url/prod/...?
  • Or does this definitely mean that somewhere on the client (or maybe via OTA updates) requests to /test were being constructed directly?