-
Notifications
You must be signed in to change notification settings - Fork 85
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
feat: update agent and add log_visibility support #3782
Conversation
@@ -337,4 +338,5 @@ teardown() { | |||
assert_contains 'Reserved cycles limit: 1_000_000_000_000' | |||
assert_contains 'Wasm memory limit: 1_073_741_824' | |||
assert_contains 'Freezing threshold: 604_800' | |||
assert_contains 'Log visibility: public' |
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 we update an existing test to show that dfx by default creates canister with controllers
log visibility?
src/dfx-core/src/error/dfx_config.rs
Outdated
#[error("Failed to get log visibility for canister '{0}': {1}")] | ||
GetLogVisibilityFailed(String, GetCanisterConfigError), |
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.
#[error("Failed to get log visibility for canister '{0}': {1}")] | |
GetLogVisibilityFailed(String, GetCanisterConfigError), | |
#[error("Failed to get log visibility for canister '{0}'")] | |
GetLogVisibilityFailed(String, #[source] GetCanisterConfigError), |
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.
I see GetWasmMemoryLimitError has the same problem, but the others follow this pattern
Co-authored-by: Eric Swanson <64809312+ericswanson-dfinity@users.noreply.github.com>
Description
Updates
ic-agent
and related crates to 0.36.0 and adds support for the canister settinglog_visibility
.Fixes SDK-1543
How Has This Been Tested?
Added e2e
Checklist: