(actionID, commandName string, verbosityLevel VerbosityLevel, monitoringRetries uint)
| 39 | } |
| 40 | |
| 41 | func newMonitoringAction(actionID, commandName string, verbosityLevel VerbosityLevel, monitoringRetries uint) monitoringAction { |
| 42 | return monitoringAction{ |
| 43 | action: newAction(actionID, verbosityLevel), |
| 44 | commandName: commandName, |
| 45 | monitoringRetries: monitoringRetries, |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | func newAction(actionID string, verbosityLevel VerbosityLevel) action { |
| 50 | return action{ |
no test coverage detected