Add configuration to permit backend startup failure

Signed-off-by: Tim Hansen <timbonicush@spotify.com>
This commit is contained in:
Tim Hansen
2025-01-24 13:59:17 -07:00
parent 4de4602e94
commit 5622362b3e
7 changed files with 95 additions and 4 deletions
+4
View File
@@ -14,6 +14,8 @@
* limitations under the License.
*/
import { BackendStartupOptions } from './src';
export interface Config {
backend?: {
/** Used by the feature discovery service */
@@ -23,5 +25,7 @@ export interface Config {
include?: string[];
exclude?: string[];
};
startup?: BackendStartupOptions;
};
}