Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug/sc 220666 some value not available #58

Open
wants to merge 3 commits into
base: feature/sc-219335-add-boundary-type-selector-everywhere
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Changelog

## [Version 1.2.4](https://github.com/dataiku/dss-plugin-pi-server/releases/tag/v1.2.4) - Feature release - 2024-12-12
## [Version 1.2.4](https://github.com/dataiku/dss-plugin-pi-server/releases/tag/v1.2.4) - Feature and bug release - 2024-12-12

- Add boundary type selector to recorded data type
- Add boundary type selector to attribute search connector
- Fix issue with recorded data type

## [Version 1.2.3](https://github.com/dataiku/dss-plugin-pi-server/releases/tag/v1.2.3) - Feature release - 2024-09-26

Expand Down
2 changes: 1 addition & 1 deletion python-lib/osisoft_constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ class OSIsoftConstants(object):
"Security": "{base_url}/eventframes/{webid}/security",
"SecurityEntries": "{base_url}/eventframes/{webid}/securityentries"
}
PLUGIN_VERSION = "1.2.4-beta.1"
PLUGIN_VERSION = "1.2.4-beta.2"
VALUE_COLUMN_SUFFIX = "_val"
WEB_API_PATH = "piwebapi"
WRITE_HEADERS = {'X-Requested-With': 'XmlHttpRequest'}
2 changes: 1 addition & 1 deletion python-lib/osisoft_plugin_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -449,7 +449,7 @@ def fields_selector(data_type):
if data_type in ["Value", "EndValue"]:
return "Links%3BTimestamp%3BValue%3BType%3BUnitsAbbreviation"
else:
return "Links%3BItems.Timestamp%3BItems.Value%3BItems.Type"
return "Links%3BItems.Timestamp%3BItems.Value%3BItems.Type%3BItems.Value.Value"


def get_next_page_url(json):
Expand Down