Skip to content

Commit

Permalink
chore: reflected recent changes made to worker pools
Browse files Browse the repository at this point in the history
  • Loading branch information
jbristowe committed Dec 5, 2022
1 parent d98df30 commit 6fb9f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion octopusdeploy/schema_dynamic_worker_pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

func expandDynamicWorkerPool(d *schema.ResourceData) *workerpools.DynamicWorkerPool {
name := d.Get("name").(string)
workerType := workerpools.WorkerType(d.Get("worker_type").(string))
workerType := d.Get("worker_type").(string)

dynamicWorkerPool := workerpools.NewDynamicWorkerPool(name, workerType)
dynamicWorkerPool.ID = d.Id()
Expand Down

0 comments on commit 6fb9f73

Please sign in to comment.