Skip to content

Commit 09e527a

Browse files
authored
chore: bump agent-control version (#1793)
* chore: bump agent-control version * test: fix typo
1 parent 3c03cbc commit 09e527a

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

Cargo.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

agent-control/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "newrelic_agent_control"
33
description = "New Relic Agent Control Limited Preview"
4-
version = "1.1.0"
4+
version = "1.2.0"
55
authors.workspace = true
66
edition.workspace = true
77
rust-version.workspace = true

agent-control/tests/on_host/agent_control_cli.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fn test_config_generator_fleet_disabled_proxy() {
88
let tmp = TempDir::new().unwrap();
99
let path = tmp.path().join("output.yaml").to_string_lossy().to_string();
1010

11-
let mut cmd = Command::cargo_bin("newrelic-agent-control-onhost-cli").unwrap();
11+
let mut cmd = Command::cargo_bin("newrelic-agent-control-cli").unwrap();
1212
let args = format!(
1313
"generate-config --fleet-disabled --agent-set infra-agent --region us --proxy-url https://some.proxy.url/ --proxy-ca-bundle-dir /test/bundle/dir --proxy-ca-bundle-file /test/bundle/file --ignore-system-proxy --output-path {path}",
1414
);
@@ -43,7 +43,7 @@ fn test_config_generator_fleet_enabled_identity_provisioned() {
4343
std::fs::write(&key_path, "fake-key").unwrap();
4444
let key_path = key_path.to_string_lossy().to_string();
4545

46-
let mut cmd = Command::cargo_bin("newrelic-agent-control-onhost-cli").unwrap();
46+
let mut cmd = Command::cargo_bin("newrelic-agent-control-cli").unwrap();
4747
let args = format!(
4848
"generate-config --agent-set infra-agent --region us --fleet-id FLEET-ID --auth-client-id CLIENT-ID --auth-private-key-path {key_path} --output-path {path}",
4949
);

0 commit comments

Comments
 (0)