Custom Query (2765 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (40 - 42 of 2765)

Ticket Resolution Summary Owner Reporter
#1959 fixed pom.xml.in should be replace by pom.xml with input properties for Maven via CMake ahambasan Bang Pham Huu
Description

All Java applications which use Maven have a template pom.xml.in, which is instantiated with values instead of @VARIABLE@ placeholders by cmake with such a command in CMakeLists.txt

configure_file(pom.xml.in "${CMAKE_CURRENT_SOURCE_DIR}/pom.xml" @ONLY)

Currently the following pom.xml.in exist in the repo:

./applications/RRasdaman/pom.xml.in
./applications/secore/pom.xml.in
./applications/petascope/petascope_main/pom.xml.in
./applications/petascope/petascope_core/pom.xml.in
./applications/petascope/pom.xml.in
./java/pom.xml.in

Instead of configuring pom.xml.in into pom.xml, mvn can be executed to pass variable values directly to a pom.xml, e.g:

 COMMAND ${MAVEN_EXECUTABLE} -q install:install-file 
                             -Dfile=${RASJ_TARGET_DIR}/rasj-jar-with-dependencies.jar
                             -DgroupId=org.rasdaman
                             -DartifactId=rasj
                             -Dversion=${PROJECT_VERSION}

and in pom.xml, it can define these properties such as:

<properties>
    <version> property from commandline </version>
</properties>

The goal of this ticket is to eliminate pom.xml.in and have only pom.xml

#2012 fixed rascontrol should list ALL servers ahambasan Dimitar Misev
Description

currently rascontrol does not list stopped rasservers, e.g. N1 and N9 were manually stopped and now they are not listed anymore:

$ rascontrol -x "list srv -all"
rascontrol: rasdaman server remote control utility. rasdaman 9.8.0.
Copyright (c) 2003-2016 rasdaman GmbH. All rights reserved.This software contains software which is in the public domain:
- openssl 0.96c (C) 1998-2002 The OpenSSL Project, (C) 1995-1998 Eric A. Young, Tim J. Hudson
List of servers:
    Server Name          Type        Host                   Db Host               Stat   Av 
 1. N2                   (RASNET)    blade                  rasdaman_host         UP     YES
 2. N3                   (RASNET)    blade                  rasdaman_host         UP     YES
 3. N4                   (RASNET)    blade                  rasdaman_host         UP     YES
 4. N5                   (RASNET)    blade                  rasdaman_host         UP     YES
 5. N6                   (RASNET)    blade                  rasdaman_host         UP     YES
 6. N7                   (RASNET)    blade                  rasdaman_host         UP     YES
 7. N8                   (RASNET)    blade                  rasdaman_host         UP     YES

This should be fixed, rascontrol should list all servers. This functionality is handled in RasControlGrammar::listRasServers()

#2059 fixed starting rasserver without a name leads to segfault ahambasan Dimitar Misev
Description

It should rather throw an exception.

Batch Modify
Note: See TracBatchModify for help on using batch modify.
Note: See TracQuery for help on using queries.