Skip to content

Commit

Permalink
wrong datatype in startGemServerGem script
Browse files Browse the repository at this point in the history
The $Port parameter needs to be in string format since the default port for portless gems like the MaintenanceVM are defined as stings like e.g. 'instance'.
  • Loading branch information
HeSe committed Mar 30, 2015
1 parent b0539dc commit 6a07133
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/startGemServerGem
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ iferror stack
login
run
(GemServerRegistry gemServerNamed: '$GemServer') scriptStartServiceOn: $Port.
(GemServerRegistry gemServerNamed: '$GemServer') scriptStartServiceOn: '$Port'.
%
run
Expand All @@ -82,7 +82,7 @@ System beginTransaction.
object:
'pid: ', (System gemVersionReport at: 'processId') printString) addToLog.
(GemServerRegistry gemServerNamed: '$GemServer')
ifNotNil: [:gemServer | gemServer crashLog add: (${Port}) asString -> logEntry ].
ifNotNil: [:gemServer | gemServer crashLog add: ('$Port') asString -> logEntry ].
System commitTransaction.
%
Expand Down

0 comments on commit 6a07133

Please sign in to comment.