Skip to content

Commit

Permalink
add toString for MaxWorkersConfig (airbytehq#6818)
Browse files Browse the repository at this point in the history
* add toString for MaxWorkersConfig

* fmt
  • Loading branch information
jrhizor authored Oct 7, 2021
1 parent 746da21 commit 3165a74
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,14 @@ public int getMaxSyncWorkers() {
return maxSyncWorkers;
}

@Override
public String toString() {
return "MaxWorkersConfig{" +
"maxSpecWorkers=" + maxSpecWorkers +
", maxCheckWorkers=" + maxCheckWorkers +
", maxDiscoverWorkers=" + maxDiscoverWorkers +
", maxSyncWorkers=" + maxSyncWorkers +
'}';
}

}

0 comments on commit 3165a74

Please sign in to comment.