|  | 
| 41 | 41 | import static org.opensearch.transport.grpc.Netty4GrpcServerTransport.SETTING_GRPC_MAX_CONCURRENT_CONNECTION_CALLS; | 
| 42 | 42 | import static org.opensearch.transport.grpc.Netty4GrpcServerTransport.SETTING_GRPC_MAX_CONNECTION_AGE; | 
| 43 | 43 | import static org.opensearch.transport.grpc.Netty4GrpcServerTransport.SETTING_GRPC_MAX_CONNECTION_IDLE; | 
|  | 44 | +import static org.opensearch.transport.grpc.Netty4GrpcServerTransport.SETTING_GRPC_MAX_MSG_SIZE; | 
| 44 | 45 | import static org.opensearch.transport.grpc.Netty4GrpcServerTransport.SETTING_GRPC_PORT; | 
| 45 | 46 | import static org.opensearch.transport.grpc.Netty4GrpcServerTransport.SETTING_GRPC_PUBLISH_HOST; | 
| 46 | 47 | import static org.opensearch.transport.grpc.Netty4GrpcServerTransport.SETTING_GRPC_PUBLISH_PORT; | 
| @@ -115,12 +116,13 @@ public void testGetSettings() { | 
| 115 | 116 |             "SETTING_GRPC_MAX_CONCURRENT_CONNECTION_CALLS should be included", | 
| 116 | 117 |             settings.contains(SETTING_GRPC_MAX_CONCURRENT_CONNECTION_CALLS) | 
| 117 | 118 |         ); | 
|  | 119 | +        assertTrue("SETTING_GRPC_MAX_MSG_SIZE should be included", settings.contains(SETTING_GRPC_MAX_MSG_SIZE)); | 
| 118 | 120 |         assertTrue("SETTING_GRPC_MAX_CONNECTION_AGE should be included", settings.contains(SETTING_GRPC_MAX_CONNECTION_AGE)); | 
| 119 | 121 |         assertTrue("SETTING_GRPC_MAX_CONNECTION_IDLE should be included", settings.contains(SETTING_GRPC_MAX_CONNECTION_IDLE)); | 
| 120 | 122 |         assertTrue("SETTING_GRPC_KEEPALIVE_TIMEOUT should be included", settings.contains(SETTING_GRPC_KEEPALIVE_TIMEOUT)); | 
| 121 | 123 | 
 | 
| 122 | 124 |         // Verify the number of settings | 
| 123 |  | -        assertEquals("Should return 11 settings", 11, settings.size()); | 
|  | 125 | +        assertEquals("Should return 12 settings", 12, settings.size()); | 
| 124 | 126 |     } | 
| 125 | 127 | 
 | 
| 126 | 128 |     public void testGetQueryUtilsBeforeCreateComponents() { | 
|  | 
0 commit comments