forked from svenvc/zinc
-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #53: barring any new sent but not implmented messages, this bug…
… should be fixed .... of course Issue #61 and Issue #62 were opened to implement the missing behavior
- Loading branch information
1 parent
3dc65e3
commit a9aaa40
Showing
10 changed files
with
8 additions
and
21 deletions.
There are no files selected for viewing
3 changes: 0 additions & 3 deletions
3
repository/Zinc-HTTP.package/ZnHTTPSocketFacade.class/class/httpGif..st
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
repository/Zinc-HTTP.package/ZnHTTPSocketFacade.class/class/httpPng..st
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,4 @@ | ||
system startup | ||
startUp: resuming | ||
"Our system startUp hook: start all servers we manage. | ||
We do this using deferred startup actions to allow normal error handling." | ||
"noop for gemstone ... always explicitly start server on startup for GemStone" | ||
|
||
(resuming or: [ self alwaysRestart ]) | ||
ifTrue: [ | ||
Smalltalk addDeferredStartupAction: [ | ||
self managedServers do: [ :each | each start ] ] ] |
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
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Tests.package/ZnMessageBenchmark.class/instance/benchRead.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,3 +1,3 @@ | ||
accessing | ||
benchRead | ||
^ [ self read ] bench | ||
^ [ self read ] perform: #'bench' |
2 changes: 1 addition & 1 deletion
2
repository/Zinc-Tests.package/ZnMessageBenchmark.class/instance/benchWrite.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,3 +1,3 @@ | ||
accessing | ||
benchWrite | ||
^ [ self write ] bench | ||
^ [ self write ] perform: #'bench' |
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
Large diffs are not rendered by default.
Oops, something went wrong.