Leo Singer
Leo Singer
Naive question: OpenSearch is written in Java, isn't it? Is the bundled JRE/JDK the only platform-dependent part of the distributions?
Note that there is an exception: clang from MacPorts supports OpenMP, even without the `-Xpreprocess` option. See https://github.com/mesonbuild/meson/issues/13145.
I'm not using OpenTelemetry actively at the moment, so I don't have a ready way to test this. Perhaps the maintainer of the openetelemtry-instrumentation-remix, @justindsmith, would care to take over...
Well, we've never used this pragma, but our deployment is failing without it. See https://github.com/nasa-gcn/gcn.nasa.gov/pull/2261.
It's lucky that we don't deploy with `AdministratorAccess`, because when I added the following to our app.arc, Architect tried to delete our CloudFormation distribution! ``` @cdn false ``` ``` ⚬...
> Remove @cdn false and proceed with AdministratorAccess and you'll be fine! Our cloud engineering team definitely will not allow us to run the CI/CD pipeline with AdministratorAccess.
But we don't want Architect to invalidate our CDN. We fingerprint our assets.
If it's experimental, then could you add a way to disable it?
I think that this truly should be treated as the a bug. The [README](https://github.com/aws-actions/configure-aws-credentials) says (emphasis is my own): > GitHub actions has recently started throwing warning messages regarding the...
What about defining `prototype` in the class? ```ts export class NodeOnDiskFile implements File { prototype = {}; name: string; ... } ```