@@ -2856,7 +2856,7 @@ public ArangoUnixTime getTime() throws ArangoException {
2856
2856
* @throws ArangoException
2857
2857
*/
2858
2858
public DefaultEntity reloadRouting () throws ArangoException {
2859
- return adminDriver .reloadRouting ();
2859
+ return adminDriver .reloadRouting (getDefaultDatabase () );
2860
2860
}
2861
2861
2862
2862
/**
@@ -3850,7 +3850,7 @@ public ImportResultEntity importDocumentsByHeaderValues(
3850
3850
* @throws ArangoException
3851
3851
*/
3852
3852
public DatabaseEntity getCurrentDatabase () throws ArangoException {
3853
- return databaseDriver .getCurrentDatabase ();
3853
+ return databaseDriver .getCurrentDatabase (getDefaultDatabase () );
3854
3854
}
3855
3855
3856
3856
/**
@@ -5478,7 +5478,7 @@ public <V, E> TraversalEntity<V, E> getTraversal(
5478
5478
* @throws ArangoException
5479
5479
*/
5480
5480
public DefaultEntity deleteQueryCache () throws ArangoException {
5481
- return queryCacheDriver .deleteQueryCache ();
5481
+ return queryCacheDriver .deleteQueryCache (getDefaultDatabase () );
5482
5482
}
5483
5483
5484
5484
/**
@@ -5489,7 +5489,7 @@ public DefaultEntity deleteQueryCache() throws ArangoException {
5489
5489
* @throws ArangoException
5490
5490
*/
5491
5491
public QueryCachePropertiesEntity getQueryCacheProperties () throws ArangoException {
5492
- return queryCacheDriver .getQueryCacheProperties ();
5492
+ return queryCacheDriver .getQueryCacheProperties (getDefaultDatabase () );
5493
5493
}
5494
5494
5495
5495
/**
@@ -5500,7 +5500,7 @@ public QueryCachePropertiesEntity getQueryCacheProperties() throws ArangoExcepti
5500
5500
*/
5501
5501
public QueryCachePropertiesEntity setQueryCacheProperties (QueryCachePropertiesEntity properties )
5502
5502
throws ArangoException {
5503
- return queryCacheDriver .setQueryCacheProperties (properties );
5503
+ return queryCacheDriver .setQueryCacheProperties (getDefaultDatabase (), properties );
5504
5504
}
5505
5505
5506
5506
/**
0 commit comments