mirror of
https://github.com/minio/minio.git
synced 2025-11-09 21:49:46 -05:00
api: Add new ListenBucketNotificationHandler. (#2336)
This API is precursor before implementing `minio lambda` and `mc` continous replication.
This new api is an extention to BucketNofication APIs.
// Request
```
GET /bucket?notificationARN=arn:minio:lambda:us-east-1:10:minio HTTP/1.1
...
...
```
// Response
```
{"Records": ...}
...
...
...
{"Records": ...}
```
This commit is contained in:
committed by
Anand Babu (AB) Periasamy
parent
90c20a8c11
commit
064c51162d
@@ -6,7 +6,7 @@
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
*shouldP
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
|
||||
16
pkg/sys/stats_test.go
Normal file
16
pkg/sys/stats_test.go
Normal file
@@ -0,0 +1,16 @@
|
||||
// +build linux darwin windows
|
||||
|
||||
package sys
|
||||
|
||||
import "testing"
|
||||
|
||||
// Test get stats result.
|
||||
func TestGetStats(t *testing.T) {
|
||||
stats, err := GetStats()
|
||||
if err != nil {
|
||||
t.Errorf("Tests: Expected `nil`, Got %s", err)
|
||||
}
|
||||
if stats.TotalRAM == 0 {
|
||||
t.Errorf("Tests: Expected `n > 0`, Got %d", stats.TotalRAM)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user