Skip to content

Commit

Permalink
[darwin-framework-tool] Use per commissioner storage by default inste…
Browse files Browse the repository at this point in the history
…ad of shared storage
  • Loading branch information
vivien-apple authored and woody-apple committed Oct 25, 2024
1 parent ba82a78 commit 9dc8842
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class CHIPCommandBridge : public Command {
"commissioner-name. Interactive mode will only set a single commissioner on the inital command. "
"The commissioner node ID will be persisted until a different one is specified.");
AddArgument("commissioner-shared-storage", 0, 1, &mCommissionerSharedStorage,
"Use a shared storage instance instead of individual storage for each commissioner. Default is true.");
"Use a shared storage instance instead of individual storage for each commissioner. Default is false.");
AddArgument("paa-trust-store-path", &mPaaTrustStorePath,
"Path to directory holding PAA certificate information. Can be absolute or relative to the current working "
"directory.");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@
productAttestationAuthorityCertificates = nil;
}

sUseSharedStorage = mCommissionerSharedStorage.ValueOr(true);
sUseSharedStorage = mCommissionerSharedStorage.ValueOr(false);
if (sUseSharedStorage) {
return SetUpStackWithSharedStorage(productAttestationAuthorityCertificates);
}
Expand Down

0 comments on commit 9dc8842

Please sign in to comment.