Skip to content

Commit 8730589

Browse files
committed
Merge branch 'feature/sc-241566-add-elementname-column-to-attribute-search' into release/1.3.0
2 parents 882e57a + 04a88b8 commit 8730589

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

custom-recipes/pi-system-retrieve-event-frames/recipe.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@
261261
{
262262
"name": "max_count",
263263
"label": "Max count",
264-
"visibilityCondition": "model.show_advanced_parameters==true && ['InterpolatedData','PlotData','RecordedData'].includes(model.data_type)",
264+
"visibilityCondition": "false && model.show_advanced_parameters==true && ['InterpolatedData','PlotData','RecordedData'].includes(model.data_type)",
265265
"description": "",
266266
"type": "INT",
267267
"defaultValue": 10000

custom-recipes/pi-system-retrieve-event-frames/recipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@
118118
batch_buffer_size += 1
119119
if (batch_buffer_size >= batch_size) or (absolute_index == nb_rows_to_process):
120120
rows = client.get_rows_from_webids(
121-
buffer, data_type, max_count,
121+
buffer, data_type, max_count=max_count,
122122
search_full_hierarchy=search_full_hierarchy,
123123
can_raise=False,
124124
batch_size=batch_size,

python-connectors/pi-system_event-frames-search/connector.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@
263263
{
264264
"name": "max_count",
265265
"label": "Max count",
266-
"visibilityCondition": "model.show_advanced_parameters==true && model.must_retrieve_metrics && ['PlotData', 'InterpolatedData', 'RecordedData'].includes(model.data_type)",
266+
"visibilityCondition": "false && model.show_advanced_parameters==true && model.must_retrieve_metrics && ['PlotData', 'InterpolatedData', 'RecordedData'].includes(model.data_type)",
267267
"description": "",
268268
"type": "INT",
269269
"defaultValue": 10000

0 commit comments

Comments
 (0)