-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
proposed bugfixes for Issue #32 and Issue #30 ...
Issue #32 fix involves waiting until the gem process has well an truly stopped .. changes made to stopGemServerGem and removal of delay in GemServer>>restartGems Issue #30 involves using #printString and well-placed `"` for command line argument creation in GemServer>>executeStartGemCommand: and changes to stopGemServerGem and startGemServerGems to strip the `'` character from file names while leaving it for use in Smalltalk code ...
- Loading branch information
1 parent
cf0cd23
commit 41bedb3
Showing
6 changed files
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
...ory/GsApplicationTools-Server.package/GemServer.class/instance/executeStartGemCommand..st
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
server specialization | ||
executeStartGemCommand: portOrResourceName | ||
| commandLine | | ||
commandLine := self startScriptPath , ' ' , self name , ' ' | ||
, portOrResourceName asString , ' "' , self exeConfPath , '"'. | ||
commandLine := self startScriptPath , ' ' , self name , ' "' | ||
, portOrResourceName printString , '" "' , self exeConfPath , '"'. | ||
self performOnServer: commandLine |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
repository/GsApplicationTools-Server.package/monticello.meta/version
Large diffs are not rendered by default.
Oops, something went wrong.