mesa 0.43.18

A library for Shasta
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(test)]
#[tokio::test]
async fn update_desired_configuration() {
    let token = "--REDACTED--";
    let shasta_root_cert = "--REDACTED--".as_bytes();

    super::utils::update_component_desired_configuration(
        token,
        "https://api.cmn.alps.cscs.ch/apis",
        shasta_root_cert,
        "x1001c1s5b1n1",
        "test!",
        true,
    )
    .await;
}