Skip to content

Commit 0ca3b56

Browse files
U-AMERICAS\Trevor_SquillarioU-AMERICAS\Trevor_Squillario
authored andcommitted
Release 3.5.1
1 parent f95aa13 commit 0ca3b56

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.5.1]() - 2023-04-25
8+
### Fixed
9+
- Fixed bug with RunLater Scheduled Discovery in New-OMEDiscovery ([Issue #11](https://github.com/dell/OpenManage-PowerShell-Modules/issues/11))
10+
711
## [3.5.0]() - 2023-04-14
812
### Added
913
- Invoke-OMEQuickDeploy

DellOpenManage/DellOpenManage.psd1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#
44
# Generated by: Trevor Squillario <Trevor.Squillario@Dell.com>
55
#
6-
# Generated on: 4/14/2023
6+
# Generated on: 4/25/2023
77
#
88

99
@{
@@ -12,7 +12,7 @@
1212
RootModule = 'DellOpenManage.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '3.5.0'
15+
ModuleVersion = '3.5.1'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

DellOpenManage/Public/OME/New-OMEDiscovery.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function Get-DiscoverDevicePayload($Name, $HostList, $DeviceType, $DiscoveryUser
101101
}
102102
if ($Schedule.ToLower() -eq "runlater") {
103103
$DiscoveryConfigPayload.Schedule.RunNow = $false
104-
$DiscoveryConfigPayload.Schedule.RunLater = $true
104+
$DiscoveryConfigPayload.Schedule | Add-Member -NotePropertyName RunLater -NotePropertyValue $true
105105
$DiscoveryConfigPayload.Schedule.Cron = $ScheduleCron
106106
}
107107
return $DiscoveryConfigPayload

0 commit comments

Comments
 (0)