Uploaded image for project: 'Core Server'
  1. Core Server
  2. SERVER-36806

Powercycle option parsing for fsmWorkloadFiles & fsmWorkloadBlacklistFiles does not save them in the YML option file

    • Server Tooling & Methods
    • ALL
    • 54

      The default value for --fsmWorkloadFiles & --fsmWorkloadBlacklistFiles options is [] (empty list). These options are not being saved when the --saveConfigOptions is selected. The options should default to None and the test for them should be as follows:

          fsm_workload_files = []
          if options.fsm_workload_files:
              for fsm_workload_file in options.fsm_workload_files:
                  fsm_workload_files += fsm_workload_file.replace(" ", "").split(",")
          fsm_workload_blacklist_files = []
          if options.fsm_workload_blacklist_files:
              for fsm_workload_blacklist_file in options.fsm_workload_blacklist_files:
                  fsm_workload_blacklist_files += fsm_workload_blacklist_file.replace(" ", "").split(",")
      

            Assignee:
            backlog-server-stm Backlog - Server Tooling and Methods (STM) (Inactive)
            Reporter:
            jonathan.abrahams Jonathan Abrahams
            Votes:
            0 Vote for this issue
            Watchers:
            3 Start watching this issue

              Created:
              Updated:
              Resolved: