This is an automated email from the ASF dual-hosted git repository.

Cole-Greer pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/master by this push:
     new e995636faf CTR fix gremlin-server test compilation following merge.
e995636faf is described below

commit e995636faf0b5aada3da833dbbe81b049f8cd53e
Author: Cole Greer <[email protected]>
AuthorDate: Fri Jun 26 16:52:38 2026 -0700

    CTR fix gremlin-server test compilation following merge.
---
 .../tinkerpop/gremlin/server/GremlinDriverTransactionIntegrateTest.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverTransactionIntegrateTest.java
 
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverTransactionIntegrateTest.java
index 66b3308ee2..0a67f9cf71 100644
--- 
a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverTransactionIntegrateTest.java
+++ 
b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinDriverTransactionIntegrateTest.java
@@ -812,7 +812,7 @@ public class GremlinDriverTransactionIntegrateTest extends 
AbstractGremlinServer
                 gtx.addV("person").property("name", "doomed_commit").iterate();
                 final String txId = ((RemoteTransaction) 
gtx.tx()).getTransactionId();
                 sideClient.submit("g.tx().rollback()",
-                        
RequestOptions.build().addG(GTX).transactionId(txId).create()).all().join();
+                        
RequestOptions.build().traversalSource(GTX).transactionId(txId).create()).all().join();
             });
             fail("The commit failure should propagate out of executeInTx()");
         } catch (Exception ex) {

Reply via email to