sergehuber commented on code in PR #715: URL: https://github.com/apache/unomi/pull/715#discussion_r2428285457
########## itests/README.md: ########## @@ -260,3 +281,60 @@ And the final step is, zipping the new version of the snapshot repository and re > In case you are using docker, do zip in the container and use `docker cp` to > get the zip file from the docker container. Now you can modify the migration test class to test that your added data in 1.6.x is correctly migrated in 2.0.0 + +# Known issues + +In the OpenSearch test logs, you will see a lot of lines that look like this : + + opensearch> [2024-12-31T15:33:14,652][WARN ][o.o.w.QueryGroupTask ] [f3200971b164] QueryGroup _id can't be null, It should be set before accessing it. This is abnormal behaviour + +This is due to a bug in OpenSearch 2.18 but it has no impact on the actual functionality. You can track this bug here: + + https://github.com/opensearch-project/OpenSearch/issues/16874 + +## Karaf Tools + +The `kt.sh` script (short for "Karaf Tools") provides convenient utilities for working with Karaf logs and directories during integration testing. Since Karaf test directories are created with unique UUIDs for each test run, this script helps locate and work with the latest test instance. + +### Usage + +```bash +./kt.sh COMMAND [ARGS] +``` + +### Available Commands + +| Command | Alias | Description | +|-------------|-------|-------------------------------------------------------| +| `log` | `l` | View the latest Karaf log file using less | +| `tail` | `t` | Tail the current Karaf log file | +| `grep` | `g` | Grep the latest Karaf log file (requires pattern) | +| `dir` | `d` | Print the latest Karaf directory path | +| `pushd` | `p` | Change to the latest Karaf directory using pushd | +| `help` | `h` | Show help message | Review Comment: This was removed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
