Skip to content

Commit 7b393df

Browse files
Standalone testing updates
1 parent 4f134c4 commit 7b393df

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/backend/source/server.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,6 @@ const throwApiError = (err: any) => {
131131

132132
server.on('error', throwApiError);
133133
server.on('listening', () =>
134-
logger.info('Server running at http://' + APP_CORE_LIGHTNING_DAEMON_IP + ':' + LIGHTNING_PORT),
134+
logger.warn('Server running at http://' + APP_CORE_LIGHTNING_DAEMON_IP + ':' + LIGHTNING_PORT),
135135
);
136136
server.listen({ port: LIGHTNING_PORT, host: APP_CORE_LIGHTNING_DAEMON_IP });

entrypoint.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ LIGHTNING_PUBKEY="$(jq -n "$GETINFO_RESPONSE" | jq -r '.result.id')"
6969
echo "$LIGHTNING_PUBKEY"
7070

7171
# Compare existing pubkey with current
72-
if [ "$EXISTING_PUBKEY" != "LIGHTNING_PUBKEY=$LIGHTNING_PUBKEY" ]; then
72+
if [ "$EXISTING_PUBKEY" != "LIGHTNING_PUBKEY=\"$LIGHTNING_PUBKEY\"" ]; then
7373
# Pubkey changed; rewrite new data on the file.
7474
echo "Pubkey mismatched; Rewriting the data."
7575
cat /dev/null > $COMMANDO_CONFIG

0 commit comments

Comments
 (0)