Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Fix pointer typo [ Fiber ] #5871

Merged
merged 45 commits into from
Jul 14, 2020
Merged
Changes from 1 commit
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
998bbd1
Update Fiber v1.10.0
Fenny May 27, 2020
aaea20a
Fiber: Bump v1.12.0
Fenny Jun 19, 2020
c9cbefd
Merge branch 'master' of https://github.com/Fenny/FrameworkBenchmarks
Fenny Jun 19, 2020
3b21ae7
Update constant
Fenny Jun 19, 2020
904ef1b
Fiber optimization
Fenny Jun 19, 2020
0b64b8b
Merge remote-tracking branch 'upstream/master'
Fenny Jun 29, 2020
3848f14
Merge remote-tracking branch 'TechEmpower/master'
Jun 29, 2020
f017095
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
11581d1
v1.12.1
Jun 29, 2020
8c1fc64
Update dependencies
Jun 29, 2020
168e1db
Update cached worlds test
Jun 29, 2020
06270ba
Update cached test
Jun 29, 2020
ba87348
Merge remote-tracking branch 'TechEmpower/master'
Jun 29, 2020
b05c36e
Update cached test
Jun 29, 2020
f50707e
Update cache test
Jun 29, 2020
c6516c1
Fix cache test
Jun 29, 2020
165ca54
Update cache test
Jun 29, 2020
c4159a1
Update cache test
Jun 29, 2020
f35d90d
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
a59e779
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
b43cc42
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
c01d5bc
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
83b6561
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
6f20961
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
d2ad16f
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
d573fb9
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
d5e7f61
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
e03435a
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
32f25ca
Merge remote-tracking branch 'origin/master'
Jun 29, 2020
3a6e686
Fix panic
Jun 29, 2020
640909c
Merge remote-tracking branch 'upstream/master'
Fenny Jul 9, 2020
3e74a8f
🧹 Fix test-requirements
Fenny Jul 9, 2020
e1d12f1
👩‍🚀 Optimize response
Fenny Jul 10, 2020
4352e9b
🐛 Fix typo
Fenny Jul 10, 2020
5ac4332
📦 Update test
Fenny Jul 10, 2020
3a29ad5
Merge branch 'master' into master
Fenny Jul 11, 2020
d11881f
📦 Bump v1.12.6
Fenny Jul 11, 2020
d3c2795
Merge branch 'master' of https://github.com/Fenny/FrameworkBenchmarks
Fenny Jul 11, 2020
14a41af
🐛 Fix test
Fenny Jul 12, 2020
fad8d12
🐛 Fix test
Fenny Jul 12, 2020
4b3926a
🧹
Fenny Jul 12, 2020
5dae8b6
📘 Add two simple benchmark test cases
kiyonlin Jul 13, 2020
428cac7
🍬 remove extra '&'
kiyonlin Jul 13, 2020
8ebc7c4
🐛 Fix JSON pointer
Fenny Jul 14, 2020
47175ea
Merge pull request #1 from kiyonlin/master
Fenny Jul 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
🐛 Fix typo
  • Loading branch information
Fenny committed Jul 10, 2020
commit 4352e9b347c036e544a0d8c2af12cef677122c89
2 changes: 1 addition & 1 deletion frameworks/Go/fiber/src/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ func AcquireJSON() *Message {

// ReleaseJSON ...
func ReleaseJSON(json *Message) {
json.Message = ""
json.Message = nil
JSONpool.Put(json)
}

Expand Down