-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,20 +19,14 @@ public class WorkflowResourceApiTest | |
private const string WORKFLOW_VARIABLE_2 = "TestVariable2"; | ||
private const string WORKFLOW_DESC = "Test Workflow With Variables"; | ||
private const int WORKFLOW_VERSION = 1; | ||
private const string OWNER_EMAIL = "<REPLACE_WITH_OWNER_EMAIL>"; | ||
|
||
//private readonly OrkesApiClient _orkesApiClient; | ||
private const string OWNER_EMAIL = "[email protected]"; | ||
|
||
private readonly WorkflowResourceApi _workflowClient; | ||
private readonly MetadataResourceApi _metadataResourceApi; | ||
private readonly ILogger _logger; | ||
|
||
public WorkflowResourceApiTest() | ||
{ | ||
// Dev local test | ||
//_orkesApiClient = new OrkesApiClient(new Configuration(), new OrkesAuthenticationSettings("<Key_Id>", "<Key_Secret>")); | ||
//_workflowClient = _orkesApiClient.GetClient<WorkflowResourceApi>(); | ||
//_metadataResourceApi = _orkesApiClient.GetClient<MetadataResourceApi>(); | ||
|
||
_workflowClient = ApiExtensions.GetClient<WorkflowResourceApi>(); | ||
_metadataResourceApi = ApiExtensions.GetClient<MetadataResourceApi>(); | ||
_logger = ApplicationLogging.CreateLogger<WorkerTests>(); | ||
|