Skip to content
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

Use docs subdomain #650

Merged
merged 1 commit into from
Jul 27, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/benchmarks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ The profiler will generate a flamegraph under `target/criterion/<name_of_benchma
## Changing Restate's configuration

The benchmarks spawn Restate with a default configuration.
You can [overwrite this configuration by specifying environment variables](http://restate.dev/docs/deployment-operations/configuration) of the form `RESTATE_WORKER__PARTITIONS=1337`.
You can [overwrite this configuration by specifying environment variables](http://docs.restate.dev/deployment-operations/configuration) of the form `RESTATE_WORKER__PARTITIONS=1337`.
2 changes: 1 addition & 1 deletion src/errors/src/error_codes/META0004.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ Make sure, when updating a service endpoint, to assign it a new uri.

You can force the override using the `"force": true` field in the discover request, but beware that this can lead in-flight invocations to an unrecoverable error state.

See the [versioning documentation](http://restate.dev/docs/deployment-operations/versioning) for more information.
See the [versioning documentation](http://docs.restate.dev/deployment-operations/versioning) for more information.
2 changes: 1 addition & 1 deletion src/errors/src/error_codes/META0006.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ When implementing a new service revision, make sure that:
* The service instance type and the key definition, if any, is exactly the same as of the previous revisions.
* The Protobuf contract and message definitions are backward compatible.

See the [versioning documentation](http://restate.dev/docs/deployment-operations/versioning) for more information.
See the [versioning documentation](http://docs.restate.dev/deployment-operations/versioning) for more information.
2 changes: 1 addition & 1 deletion src/errors/src/error_codes/RT0002.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

Cannot start Restate because the configuration cannot be parsed. Check the configuration file and the environment variables provided.

For a complete list of configuration options, and a sample configuration, check http://restate.dev/docs/deployment-operations/configuration
For a complete list of configuration options, and a sample configuration, check http://docs.restate.dev/deployment-operations/configuration
2 changes: 1 addition & 1 deletion src/errors/src/helper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ macro_rules! declare_restate_error_codes {
(@declare_code $code:ident) => {
pub const $code: codederror::Code = codederror::Code::new(
stringify!($code),
Some(concat!("For more details, look at the docs with https://restate.dev/docs/errors#", stringify!($code))),
Some(concat!("For more details, look at the docs with https://docs.restate.dev/errors#", stringify!($code))),
paste::paste! { [< $code _DESCRIPTION >] }
);
};
Expand Down
2 changes: 1 addition & 1 deletion src/meta/src/rest_api/endpoints.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ pub struct RegisterServiceEndpointRequest {
///
/// By default, this is `true` but it might change in future to `false`.
///
/// See the [versioning documentation](http://restate.dev/docs/deployment-operations/versioning) for more information.
/// See the [versioning documentation](http://docs.restate.dev/deployment-operations/versioning) for more information.
#[serde(default = "RegisterServiceEndpointRequest::default_force")]
pub force: bool,
}
Expand Down