polyansky-syberry
polyansky-syberry
Code (modified samples): ```java public static void main(String[] args) throws TException, IOException { IWorkflowService cadenceService = new WorkflowServiceTChannel( "127.0.0.1", 7933, new WorkflowServiceTChannel.ClientOptions.Builder() .setRpcTimeout(1_000_000L) .setListArchivedWorkflowRpcTimeout(1_000_000_000L) .setQueryRpcTimeout(1_000_000_000L) .setRpcLongPollTimeout(1_000_000_000L) .build() ); System.out.println("---------------------------------------------------------------"); System.out.println("Run...
Hey, I use `com.uber.cadence.client.WorkflowOptions` to add memo and search attributes in a simple run but I am having troubles trying to find a way to add memo\search attributes for reruns....