Skip to content

Commit 5289621

Browse files
committed
app+litcli: fix mailbox URL
1 parent 9e07833 commit 5289621

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/src/store/stores/sessionStore.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Session } from '../models';
1717
export default class SessionStore {
1818
private _store: Store;
1919

20-
proxyServer = IS_PROD ? 'mailbox.staging.lightningcluster.com:443' : 'aperture:11110';
20+
proxyServer = IS_PROD ? 'mailbox.terminal.lightning.today:443' : 'aperture:11110';
2121

2222
/** the collection of sessions */
2323
sessions: ObservableMap<string, Session> = observable.map();

cmd/litcli/sessions.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ var addSessionCommand = cli.Command{
4343
cli.StringFlag{
4444
Name: "mailboxserveraddr",
4545
Usage: "the host:port of the mailbox server to be used",
46-
Value: "mailbox.staging.lightningcluster.com:443",
46+
Value: "mailbox.terminal.lightning.today:443",
4747
},
4848
cli.BoolFlag{
4949
Name: "devserver",

0 commit comments

Comments
 (0)