You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 1, 2023. It is now read-only.
Copy file name to clipboardExpand all lines: CHANGELOG.md
+19Lines changed: 19 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
4
4
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
5
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
7
+
## 6.4.0
8
+
9
+
### Added
10
+
* Deployment/CLI: OneFuzz Config refactored - `tenant_id`, `tenant_domain`, `multi_tenant_domain`, and `cli_client_id` are now required values in the config.json used during deployment and no longer required when running the config command. [#2771](https://github.com/microsoft/onefuzz/pull/2771), [#2811](https://github.com/microsoft/onefuzz/pull/2811)
* Service: Include `AssignedTo` when failing to create a work item due to an authentication exception [#2770](https://github.com/microsoft/onefuzz/pull/2770)
17
+
18
+
### Fixed
19
+
* Agent: Fixes & improvements to `Expand` behavior [#2789](https://github.com/microsoft/onefuzz/pull/2789)
20
+
* Agent: Triming whitespace in output from monitored process before printing [#2782](https://github.com/microsoft/onefuzz/pull/2782)
21
+
* CLI: Fixed default value of analyzer_exe [#2797](https://github.com/microsoft/onefuzz/pull/2797)
Copy file name to clipboardExpand all lines: docs/unmnaged-nodes.md
+31-1Lines changed: 31 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -87,4 +87,34 @@ onefuzz nodes get <machine_guid>
87
87
```
88
88
89
89
This should return one entry. Verify that the `pool_name` matched the pool name created earlier.
90
-
From here you will be able to schedule jobs on that pool and they will be running.
90
+
From here you will be able to schedule jobs on that pool and they will be running.
91
+
92
+
93
+
## Troubleshooting
94
+
95
+
### increase the verbosity of the logs
96
+
It can help when investigating issues to increase the log verbosity. you will need to set the [RUST_LOG](https://docs.rs/env_logger/latest/env_logger/#enabling-logging) environment variable when starting docker
97
+
98
+
```
99
+
docker run --rm --env RUST_LOG=<log_level> <image_name> --machine_id <machine_id>
100
+
```
101
+
log_level can be any of
102
+
- error
103
+
- warn
104
+
- info
105
+
- debug
106
+
- trace
107
+
108
+
109
+
### use the container interactively
110
+
you can use the container interactively by with the following command
111
+
112
+
windows
113
+
```
114
+
docker run --it --rm --entrypoint powershell <image_name>
115
+
```
116
+
117
+
linux
118
+
```
119
+
docker run --it --rm --entrypoint bash <image_name>
0 commit comments