-
Updated
Jun 10, 2020 - Java
gateway
Here are 1,002 public repositories matching this topic...
-
Updated
Oct 11, 2020 - Java
-
Updated
Sep 1, 2020 - Go
-
Updated
Sep 2, 2020 - Go
Is your feature request related to a problem? Please describe.
As observed during #261, users can accidentally set timeouts inconsistently. A concrete example is that one can set a User facing timeout lower than any backend timeout, such that requests may fail early.
Describe the solution you'd like
We should provide some sanity checking to prevent unintended timeout behavior.
-
Updated
Oct 5, 2020 - C++
-
Updated
Nov 5, 2019 - JavaScript
-
Updated
Sep 29, 2020 - Java
-
Updated
Oct 9, 2020 - Java
-
Updated
Jul 31, 2019 - JavaScript
-
Updated
Sep 7, 2020 - PHP
-
Updated
Oct 11, 2020 - Go
-
Updated
Oct 11, 2020 - Python
-
Updated
Oct 9, 2020 - Java
We do a few JSON.parse() that we should replace with https://github.com/fastify/secure-json-parse. It's not strictly a security issue, but it would be great to do it to protect against possible attacks.
Enterprise Gateway documentation spans various roles and forms for information. It would be helpful to have this reorganized based on a consumer's role. Something similar to how the Jupyter Server or Zero to JupyterHub docs would be nice.
Sections for
-
Updated
Apr 21, 2020 - Elixir
-
Updated
Aug 20, 2020 - JavaScript
-
Updated
Oct 9, 2020 - Java
-
Updated
Jul 9, 2020 - Lua
-
Updated
Sep 27, 2020 - C#
-
Updated
Oct 11, 2020 - JavaScript
-
Updated
Oct 14, 2019 - Elixir
-
Updated
May 26, 2020 - Go
Improve this page
Add a description, image, and links to the gateway topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the gateway topic, visit your repo's landing page and select "manage topics."


In our codebase, we push
RequestContextand immediately run some code with try-with-resources.For example:
If
RequestContextprovidesrun(Runnable)orcall(Callable)we can reduce boilerplate code and simplify it.This is inspired by g