Skip to content
This repository has been archived by the owner on Aug 14, 2020. It is now read-only.

Commit

Permalink
schema/types: adapt to k8s bump
Browse files Browse the repository at this point in the history
  • Loading branch information
steveej committed May 26, 2016
1 parent 38dad2a commit da661e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions schema/types/isolator_resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ func NewResourceCPUIsolator(request, limit string) (*ResourceCPU, error) {
res := &ResourceCPU{
ResourceBase{
resourceValue{
Request: &req,
Limit: &lim,
Request: req,
Limit: lim,
},
},
}
Expand Down Expand Up @@ -209,8 +209,8 @@ func NewResourceMemoryIsolator(request, limit string) (*ResourceMemory, error) {
res := &ResourceMemory{
ResourceBase{
resourceValue{
Request: &req,
Limit: &lim,
Request: req,
Limit: lim,
},
},
}
Expand Down

0 comments on commit da661e8

Please sign in to comment.