-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP: Fetch list of nodes in a cluster client #129
Changes from all commits
b424720
e5d2015
397c090
653d4de
3bde207
c38304b
c0839e8
bd9276b
de2e9ef
848fcf2
2239322
10854fc
2b02862
4918ba4
a8dde82
20b2eb0
7379be8
9bf51b7
8ddadda
4aa0852
57cbc7c
3a32574
7d7bafd
6e98d22
bb69dd8
65db6ab
db8e2e2
2520b59
df19295
85b8994
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<assembly | ||
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd"> | ||
<id>perf-tests</id> | ||
<formats> | ||
<format>jar</format> | ||
</formats> | ||
<includeBaseDirectory>false</includeBaseDirectory> | ||
<dependencySets> | ||
<dependencySet> | ||
<outputDirectory>/</outputDirectory> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why /? Maybe target or testroot is better? |
||
<useProjectArtifact>true</useProjectArtifact> | ||
<unpack>true</unpack> | ||
<scope>test</scope> | ||
</dependencySet> | ||
</dependencySets> | ||
<fileSets> | ||
<fileSet> | ||
<directory>${project.build.directory}/test-classes</directory> | ||
<outputDirectory>/</outputDirectory> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The same question here: why /? |
||
<includes> | ||
<include>**/*</include> | ||
</includes> | ||
<useDefaultExcludes>true</useDefaultExcludes> | ||
</fileSet> | ||
</fileSets> | ||
</assembly> |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,6 @@ | |
|
||
public final class Version { | ||
public static final String version = "${project.version}"; | ||
public static final int majorVersion = ${parsedVersion.majorVersion}; | ||
public static final int minorVersion = ${parsedVersion.minorVersion}; | ||
public static final int majorVersion = Integer.parseInt("${parsedVersion.majorVersion}"); | ||
public static final int minorVersion = Integer.parseInt("${parsedVersion.minorVersion}"); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't add this file into sources manually. IDEA find a generated file when the project is added as maven project. Please, revert this hunk. |
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package org.tarantool; | ||
|
||
import org.tarantool.server.*; | ||
|
||
import java.io.*; | ||
import java.nio.*; | ||
|
||
public interface InstanceConnectionProvider { | ||
|
||
TarantoolInstanceConnection connect() throws IOException; | ||
|
||
String getDescription(); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This comment is more appropriate for a commit message.