You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What happened:
"($fileset | get-rubrikfileset).snapshots" function fails to complete. What you expected to happen:
The archive snapshots for the Filesets to be produced How to reproduce it (as minimally and precisely as possible):
Connect to Rubrik cluster and run the below:
$all_filesets = Get-RubrikFileset -PrimaryClusterId local
$fileset = $all_filesets[1]
($fileset | get-rubrikfileset).snapshots #produces error
$fileset | get-rubrikfileset #produces 0 results skewing fileset archive figures (saying there is no
backlog when there is) Anything else we need to know?:
It is used in line 194 of the powershell script.
I am using Rubrik CDM 5.0.2 and Rubrik powershell module version 4.0.511
The text was updated successfully, but these errors were encountered:
In the "Get-RubrikFileset" function.
If I change this:
# Rubrik's fileset id
[Parameter(ParameterSetName='ID')]
[Parameter(ValueFromPipelineByPropertyName = $true)]
[ValidateNotNullOrEmpty()]
To this:
# Rubrik's fileset id
#[Parameter(ParameterSetName='ID')]
[Parameter(ValueFromPipelineByPropertyName = $true)]
[ValidateNotNullOrEmpty()]
The get-archive-backlog.ps1 script completes without errors
What happened:
"($fileset | get-rubrikfileset).snapshots" function fails to complete.
What you expected to happen:
The archive snapshots for the Filesets to be produced
How to reproduce it (as minimally and precisely as possible):
Connect to Rubrik cluster and run the below:
$all_filesets = Get-RubrikFileset -PrimaryClusterId local
$fileset = $all_filesets[1]
($fileset | get-rubrikfileset).snapshots #produces error
$fileset | get-rubrikfileset #produces 0 results skewing fileset archive figures (saying there is no
backlog when there is)
Anything else we need to know?:
It is used in line 194 of the powershell script.
I am using Rubrik CDM 5.0.2 and Rubrik powershell module version 4.0.511
The text was updated successfully, but these errors were encountered: