Changes in / [1:3]


Ignore:
Files:
3 added
3 deleted
7 edited

Legend:

Unmodified
Added
Removed
  • /javavenv/pom.xml

    r1 r3  
    55        <groupId>geniusweb</groupId>
    66        <artifactId>javavenv</artifactId>
    7         <version>1.0.0</version>
     7        <version>2.0.2</version>
    88
    99
     
    1717                <!-- <tomcat.version>8.0.53</tomcat.version> -->
    1818                <tomcat.version>8.5.20</tomcat.version>
    19                 <geniusweb.version>2.0.0</geniusweb.version>
     19                <geniusweb.version>2.0.2</geniusweb.version>
    2020        </properties>
    2121
  • /javavenv/src/main/java/geniusweb/javavenv/PythonPartyFactory.java

    r1 r3  
    2222public class PythonPartyFactory {
    2323
    24         private static final int PARTY_MAX_INSTALL_TIME = 60000; // ms
    25         private static final int PIP_MAX_UPGRADE_TIME = 30000; // ms
     24        private static final int PARTY_MAX_INSTALL_TIME = 180000; // ms
     25        private static final int PIP_MAX_UPGRADE_TIME = 90000; // ms
    2626        private final ObjectMapper jackson = new ObjectMapper();
    2727        private final File targz;
     
    9999                String capstr = venv.call(Arrays.asList("-c",
    100100                                "from geniusweb.partystdio.PartyStdIo import PartyStdIo; import party; PartyStdIo(party.party()).capabilities()"),
    101                                 500);
     101                                1500);
    102102                logger.log(Level.INFO, "Capabilities=" + capstr);
    103103                return jackson.readValue(capstr, Capabilities.class);
     
    108108                String capstr = venv.call(Arrays.asList("-c",
    109109                                "from geniusweb.partystdio.PartyStdIo import PartyStdIo; import party; PartyStdIo(party.party()).description()"),
    110                                 500);
     110                                1500);
    111111                logger.log(Level.INFO, "Description=" + capstr);
    112112                return capstr;
  • /javavenv/src/main/java/geniusweb/javavenv/PythonVenv.java

    r1 r3  
    137137
    138138                String version = new Call(PYTHON3,
    139                                 Arrays.asList("-c", "import sys; print(sys.version)"), 500)
     139                                Arrays.asList("-c", "import sys; print(sys.version)"), 3000)
    140140                                                .run();
    141141                if (!(version.startsWith("3.8") || version.startsWith("3.9"))) {
     
    154154
    155155                new Call(PYTHON3,
    156                                 Arrays.asList("-m", "venv", venvdir.getAbsolutePath()), 20000)
     156                                Arrays.asList("-m", "venv", venvdir.getAbsolutePath()), 100000)
    157157                                                .run();
    158158
  • /javavenv/src/test/java/geniusweb/javavenv/PythonPartyFactoryE2E.java

    r1 r3  
    3232
    3333public class PythonPartyFactoryE2E {
     34        private static final String STUPIDPARTY = "src/test/resources/stupidparty-1.1.0.tar.gz";
     35
    3436        @Test
    3537        public void test() throws IOException, InterruptedException, PythonError {
    3638                PythonPartyFactory factory = new PythonPartyFactory(
    37                                 new File("src/test/resources/stupidparty-1.0.0.tar.gz"));
     39                                new File(STUPIDPARTY));
    3840                System.out.println(factory.getCapabilites());
    3941                factory.close();
     
    4547                        throws IOException, InterruptedException, PythonError {
    4648                PythonPartyFactory factory = new PythonPartyFactory(
    47                                 new File("src/test/resources/stupidparty-1.0.0.tar.gz"));
     49                                new File(STUPIDPARTY));
    4850                System.out.println("\nGetting a party instance");
    4951                PartyProxy proxy = factory.getInstance();
     
    6163                        throws IOException, InterruptedException, PythonError {
    6264                PythonPartyFactory factory = new PythonPartyFactory(
    63                                 new File("src/test/resources/stupidparty-1.0.0.tar.gz"));
     65                                new File(STUPIDPARTY));
    6466                System.out.println("\nGetting a party instance");
    6567                PartyProxy proxy = factory.getInstance();
     
    8688
    8789                PythonPartyFactory factory = new PythonPartyFactory(
    88                                 new File("src/test/resources/stupidparty-1.0.0.tar.gz"));
     90                                new File(STUPIDPARTY));
    8991                System.out.println("\nGetting a party instance");
    9092                PartyProxy proxy = factory.getInstance();
     
    122124
    123125                PythonPartyFactory factory = new PythonPartyFactory(
    124                                 new File("src/test/resources/stupidparty-1.0.0.tar.gz"));
     126                                new File(STUPIDPARTY));
    125127                PartyProxy proxy = factory.getInstance();
    126128                MyConnEnd conn = new MyConnEnd();
  • /pypartiesserver/pom.xml

    r1 r3  
    66        <artifactId>pypartiesserver</artifactId>
    77        <packaging>war</packaging>
    8         <version>2.0.0</version> <!-- must equal ${geniusweb.version} -->
     8        <version>2.0.2</version> <!-- must equal ${geniusweb.version} -->
    99        <name>partiesserver Maven Webapp</name>
    1010        <url>http://maven.apache.org</url>
     
    1919                <!-- <tomcat.version>8.0.53</tomcat.version> -->
    2020                <tomcat.version>8.5.20</tomcat.version>
    21                 <geniusweb.version>2.0.0</geniusweb.version>
     21                <geniusweb.version>2.0.2</geniusweb.version>
    2222        </properties>
    2323
     
    6767                        <groupId>geniusweb</groupId>
    6868                        <artifactId>javavenv</artifactId>
    69                         <version>1.0.0</version>
     69                        <version>${geniusweb.version}</version>
    7070                </dependency>
    7171
Note: See TracChangeset for help on using the changeset viewer.