Skip to content

Commit

Permalink
Merge pull request #816 from orkes-io/fix/using-workers-csharp-code-s…
Browse files Browse the repository at this point in the history
…nippet

Changes to C# code example
  • Loading branch information
liivw authored Dec 10, 2024
2 parents 473333f + a0a5a93 commit 3a65ff8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/developer-guides/using-workers.md
Original file line number Diff line number Diff line change
Expand Up @@ -339,15 +339,15 @@ orkesConductorClient({
<TabItem value="csharp" label="C#">
``` csharp
ApiExtensions.Configuration = new Configuration
var conf = new Configuration
{
BasePath = "https://developer.orkescloud.com/api",
AuthenticationSettings = new OrkesAuthenticationSettings("_CHANGE_ME_", "_CHANGE_ME_")
};

var host = WorkflowTaskHost.CreateWorkerHost(
ApiExtensions.Configuration,
LogLevel.Information
conf,
LogLevel.Debug
);
host.Start();
```
Expand Down

0 comments on commit 3a65ff8

Please sign in to comment.