Skip to content

Commit

Permalink
Fix the new license flow
Browse files Browse the repository at this point in the history
Fixes several bugs with the new license flow and allows us to
successfully obtain a license.

Additionally, use a client-provided UUID to identify the client
instead of using the Windows domain (which isn't unique per-agent).
  • Loading branch information
zmb3 committed Oct 19, 2024
1 parent ced1d8e commit 06379dd
Show file tree
Hide file tree
Showing 3 changed files with 529 additions and 141 deletions.
2 changes: 2 additions & 0 deletions src/core/client.rs
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,7 @@ impl Connector {
if self.restricted_admin_mode {
sec::connect(
&mut mcs,
"",
&"".to_string(),
&"".to_string(),
&"".to_string(),
Expand All @@ -258,6 +259,7 @@ impl Connector {
} else {
sec::connect(
&mut mcs,
&self.name,
&self.domain,
&self.username,
&self.password,
Expand Down
Loading

0 comments on commit 06379dd

Please sign in to comment.