-
Notifications
You must be signed in to change notification settings - Fork 225
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
Dosable addr #165
Dosable addr #165
Conversation
repeated ProviderAttribute requirements = 1 [(gogoproto.nullable) = false]; | ||
repeated ResourceGroup resources = 2 [(gogoproto.nullable) = false]; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
any name suggestions for this?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GroupSpec
seems great.
Pull Request Test Coverage Report for Build 214
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💊
/* begin stub data */ | ||
deployment := testutil.Deployment(tenant, nonce) | ||
groups := testutil.DeploymentGroups(deployment.Address, nonce) | ||
groups := testutil.DeploymentGroups(*new(base.Bytes), nonce) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
testutil.DeploymentAddress(t)
if you want.
cmd/akash/deployment.go
Outdated
l := tx.Lease | ||
fmt.Printf("Group %v/%v Lease: %X\n", l.Group, len(groups.GetItems()), | ||
fmt.Printf("Group %v/%v Lease: %X\n", l.Group, len(groups), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
hmm not sure how how did %X
got back in there. use "%v",X(state.FulfillmentID(...)))
for these.
// todo: read and parse deployment yaml file | ||
|
||
/* begin stub data */ | ||
provider := testutil.Provider(tenant, nonce) | ||
provider := testutil.Provider(*new(base.Bytes), nonce) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
testutil.Address(t)
repeated ProviderAttribute requirements = 1 [(gogoproto.nullable) = false]; | ||
repeated ResourceGroup resources = 2 [(gogoproto.nullable) = false]; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GroupSpec
seems great.
fixes #79
refs #164