Skip to content

Commit 83c92d9

Browse files
committed
fmt?
1 parent cb22872 commit 83c92d9

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

CHANGELOG.md

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1674,13 +1674,11 @@ Key-Value Store
16741674
#### Certificate(s) Validity Period
16751675

16761676
- Nodes certificates validity period is no longer hardcoded and must instead be set by operators and renewed by members (#2924):
1677-
16781677
- The new `node_certificate.initial_validity_days` (defaults to 1 day) configuration entry lets operators set the initial validity period for the node certificate (valid from the current system time).
16791678
- The new `command.start.service_configuration.maximum_node_certificate_validity_days` (defaults to 365 days) configuration entry sets the maximum validity period allowed for node certificates.
16801679
- The new `set_node_certificate_validity` proposal action allows members to renew a node certificate (or `set_all_nodes_certificate_validity` equivalent action to renew _all_ trusted nodes certificates).
16811680

16821681
- Service certificate validity period is no longer hardcoded and must instead be set by operators and renewed by members (#3363):
1683-
16841682
- The new `service_certificate_initial_validity_days` (defaults to 1 day) configuration entry lets operators set the initial validity period for the service certificate (valid from the current system time).
16851683
- The new `maximum_service_certificate_validity_days` (defaults to 365 days) configuration entry sets the maximum validity period allowed for service certificate.
16861684
- The new `set_service_certificate_validity` proposal action allows members to renew the service certificate.
@@ -1961,13 +1959,11 @@ Key-Value Store
19611959
#### Certificate(s) Validity Period
19621960

19631961
- Nodes certificates validity period is no longer hardcoded and must instead be set by operators and renewed by members (#2924):
1964-
19651962
- The new `node_certificate.initial_validity_days` (defaults to 1 day) configuration entry lets operators set the initial validity period for the node certificate (valid from the current system time).
19661963
- The new `command.start.service_configuration.maximum_node_certificate_validity_days` (defaults to 365 days) configuration entry sets the maximum validity period allowed for node certificates.
19671964
- The new `set_node_certificate_validity` proposal action allows members to renew a node certificate (or `set_all_nodes_certificate_validity` equivalent action to renew _all_ trusted nodes certificates).
19681965

19691966
- Service certificate validity period is no longer hardcoded and must instead be set by operators and renewed by members (#3363):
1970-
19711967
- The new `service_certificate_initial_validity_days` (defaults to 1 day) configuration entry lets operators set the initial validity period for the service certificate (valid from the current system time).
19721968
- The new `maximum_service_certificate_validity_days` (defaults to 365 days) configuration entry sets the maximum validity period allowed for service certificate.
19731969
- The new `set_service_certificate_validity` proposal action allows members to renew the service certificate.
@@ -2710,17 +2706,14 @@ The 1.0 release will require minimal changes from this release.
27102706
### Added
27112707

27122708
- Experimental
2713-
27142709
- New CCF nodes can now join from a [snapshot](https://microsoft.github.io/CCF/ccf-0.13.0/operators/start_network.html#resuming-from-existing-snapshot) (#1500, #1532)
27152710
- New KV maps can now be created dynamically in a transaction (#1507, #1528)
27162711

27172712
- CLI
2718-
27192713
- Subject Name and Subject Alternative Names for the node certificates can now be passed to cchost using the --sn and --san CLI switches (#1537)
27202714
- Signature and ledger splitting [flags](https://microsoft.github.io/CCF/ccf-0.13.0/operators/start_network.html#signature-interval) have been renamed more accurately (#1534)
27212715

27222716
- Governance
2723-
27242717
- `user_data` can be set at user creation, as well as later (#1488)
27252718

27262719
- Javascript

src/host/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1001,7 +1001,7 @@ int main(int argc, char** argv) // NOLINT(bugprone-exception-escape)
10011001
while ((uv_loop_alive(uv_default_loop()) != 0) && (close_iterations > 0))
10021002
{
10031003
uv_run(uv_default_loop(), UV_RUN_NOWAIT);
1004-
//usleep(1000); // 1ms
1004+
// usleep(1000); // 1ms
10051005
close_iterations--;
10061006
}
10071007
LOG_INFO_FMT(

0 commit comments

Comments
 (0)