-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
test(acl): add upgrade tests for ee/acl package #8792
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,7 +57,7 @@ const ( | |
|
||
localVersion = "local" | ||
waitDurBeforeRetry = time.Second | ||
requestTimeout = 90 * time.Second | ||
requestTimeout = 120 * time.Second | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @shivaji-dgraph noticed that this is more stable. |
||
) | ||
|
||
var ( | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,4 +56,10 @@ func init() { | |
binDir = filepath.Join(basePath, "binaries") | ||
encKeyPath = filepath.Join(basePath, "data", "enc-key") | ||
aclSecretPath = filepath.Join(basePath, "data", "hmac-secret") | ||
|
||
log.Printf("[INFO] baseRepoDir: %v", baseRepoDir) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you add a comment to as to why? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These are just debugging statements which could be useful when tests fail. Do you have a suggestion as to what I could write here? |
||
log.Printf("[INFO] repoDir: %v", repoDir) | ||
log.Printf("[INFO] binDir: %v", binDir) | ||
log.Printf("[INFO] encKeyPath: %v", encKeyPath) | ||
log.Printf("[INFO] aclSecretPath: %v", aclSecretPath) | ||
} |
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.
Can you add this api change to description
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.
Done