Skip to content

Commit 9c2a0f7

Browse files
committed
test namespace
1 parent 03e2e7d commit 9c2a0f7

3 files changed

Lines changed: 4 additions & 1 deletion

File tree

OpenFlow/src/Config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ export class Config {
2323
public static tls_passphrase: string = Config.getEnv("tls_passphrase", "");
2424
public static port: number = parseInt(Config.getEnv("port", "3000"));
2525
public static domain: string = Config.getEnv("domain", "localhost");
26+
public static namespace: string = Config.getEnv("namespace", "");
27+
2628
public static protocol: string = Config.getEnv("protocol", "http");
2729
public static saml_issuer: string = Config.getEnv("saml_issuer", "the-issuer");
2830

OpenFlow/src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ process.on('unhandledRejection', up => {
124124
const server: http.Server = await WebServer.configure(logger, Config.baseurl());
125125
WebSocketServer.configure(logger, server);
126126
logger.info("listening on " + Config.baseurl());
127+
logger.info("namespace: " + Config.namespace);
127128
if (!await initDatabase()) {
128129
process.exit(404);
129130
}

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.0.173
1+
0.0.174

0 commit comments

Comments
 (0)