GCHQDeveloper314
GCHQDeveloper314
In addition to this, there's a problem with the logs created by this code. Every time it runs the following is logged: ``` graph.hook.NamedOperationResolver INFO - Starting ResolverTask with timeout:...
Depending on the IDE used, it might require you to run a full build locally first. You can do this with `mvn clean install -Pquick`. If you are using Windows...
Ensure you have Java 8 installed and configured as the Java version to use in your IDE. I did some brief research which indicates that that zookeeper error is caused...
Removing the automatic merge and requiring PRs instead could work but I would favour changing the token so that it's [provided by a GitHub App](https://docs.github.com/en/apps/creating-github-apps/authenticating-with-a-github-app/making-authenticated-api-requests-with-a-github-app-in-a-github-actions-workflow). This is fetched at runtime...
Further work is required to add testing for the new multi-cache implementation and to remove as much use of deprecated code as possible, while also adding tests to ensure external...
This is a breaking change and is not a current priority. It can be revisited later.
I think this requires further information. I'm not aware of anything which would prevent use of HTTPS or require overriding. If the remote graph endpoint URL uses HTTPS then this...
Work contributing to this exists in the branch [gh-3059-federated-store-applyviewtoelements-schema-validation](https://github.com/gchq/Gaffer/tree/gh-3059-federated-store-applyviewtoelements-schema-validation). This should be the starting point if work resumes on this PR.
This would also allow a simplification to the Proxy Store to remove existing code which drops the `VISIBILITY` trait from the remote store's responses when running a `GetTraits` operation. Proxy...
Another example of a simple improvement would be changes to use of classes such as [PrintStream](https://docs.oracle.com/en/java/javase/11/docs/api/java.base/java/io/PrintStream.html) to use `Charset` directly without a need to convert into a `String` first.