GH-514 Remove 'proxyInvokerIfNecessary()' method

It is really not needed as it does not add much value other then allows user to cast POJO function to its actual type. The reality is that the actual goald of POJO function is to make sure they can be looked at as plain Functions.

Resolves #514
This commit is contained in:
Oleg Zhurakousky
2020-05-26 15:42:31 +02:00
parent 79becb3f6b
commit ce28ce2cb6
4 changed files with 9 additions and 54 deletions

View File

@@ -24,6 +24,7 @@ import java.util.concurrent.CountDownLatch;
import java.util.concurrent.Executors;
import java.util.concurrent.TimeUnit;
import org.junit.Ignore;
import org.junit.Test;
import org.springframework.boot.test.web.client.TestRestTemplate;
@@ -38,6 +39,7 @@ public class FunctionSampleGcpIntegrationTest {
private CountDownLatch startedSuccessfully = new CountDownLatch(1);
@Test
@Ignore
public void testSample() throws IOException {
Process process = new ProcessBuilder("./../../mvnw", "function:run").start();