Replies: 1 comment 4 replies
-
Hey @DavinRK1 , sorry about this one! I'll have it fixed by Monday. |
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
After recently getting CS tools downloaded I have been attempting to run some of the tools to test and learn with our lower environments. I have been trying to run the archiver tool in our QA environment with different options given. I today try to just give the config and only run the default settings in the tool and received this error.
╭──────────────────────────────── Traceback (most recent call last) ─────────────────────────────────╮
│ C:\Users\XFMJ7YY\AppData\Roaming\cs_tools.cs_tools\Lib\site-packages\cs_tools\cli\tools\archiver\ │
│ app.py:125 in identify │
│ │
│ 122 │ ] │
│ 123 │ │
│ 124 │ with LiveTasks(tasks, console=rich_console) as tasks: │
│ ❱ 125 │ │ with tasks["gather_ts_bi"]: │
│ 126 │ │ │ ts_bi_rows = ts.search( │
│ 127 │ │ │ │ f"[user action] != [user action].answer_unsaved [user action].{{null}} " │
│ 128 │ │ │ │ f"[answer book guid] != [answer book guid].{{null}} " │
│ │
│ C:\Users\XFMJ7YY\AppData\Roaming\cs_tools.cs_tools\Lib\site-packages\cs_tools\cli\layout.py:115 │
│ in exit │
│ │
│ 112 │ │ self.stop(error=bool(exc)) │
│ 113 │ │ │
│ 114 │ │ if exc is not None: │
│ ❱ 115 │ │ │ raise exc │
│ 116 │
│ 117 │
│ 118 class LiveTasks(Live): │
│ │
│ C:\Users\XFMJ7YY\AppData\Roaming\cs_tools.cs_tools\Lib\site-packages\cs_tools\cli\tools\archiver\ │
│ app.py:126 in identify │
│ │
│ 123 │ │
│ 124 │ with LiveTasks(tasks, console=rich_console) as tasks: │
│ 125 │ │ with tasks["gather_ts_bi"]: │
│ ❱ 126 │ │ │ ts_bi_rows = ts.search( │
│ 127 │ │ │ │ f"[user action] != [user action].answer_unsaved [user action].{{null}} " │
│ 128 │ │ │ │ f"[answer book guid] != [answer book guid].{{null}} " │
│ 129 │ │ │ │ f"[timestamp].'last {recent_activity} days' " │
│ │
│ C:\Users\XFMJ7YY\AppData\Roaming\cs_tools.cs_tools\Lib\site-packages\cs_tools\api\middlewares\sea │
│ rch.py:236 in call │
│ │
│ 233 │ │ │
│ 234 │ │ # Get the data types │
│ 235 │ │ column_name = "referenced_column_name" if use_logical_column_names else "name" │
│ ❱ 236 │ │ data_types = {column[column_name]: column["data_type"] for column in d["columnDe │
│ 237 │ │ │
│ 238 │ │ # Remap column names based on the desired column state │
│ 239 │ │ d["columnNames"] = list(data_types.keys()) │
╰────────────────────────────────────────────────────────────────────────────────────────────────────╯
KeyError: 'columnDetails'
Let me know if I can provide anymore information, thank you.
Beta Was this translation helpful? Give feedback.
All reactions