* remove arguments * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * test * Source Performance harness (#23922) * test * initial commit * Working dev * src-platform-dst * Integrate secrets * Update .dockerignore * Update build.gradle * Update base.sh * Build harness module and use it to measure * Build harness module and use it to measure * Build harness module and use it to measure * Automated Change * Integrate secrets * Integrate secrets * Integrate secrets * Integrate secrets * test * test * test * test * test * test * test * test * test * test * test * test * test * test * Automated Change * test * Automated Change * better error handling * temp * Automated Change * use connector image name * use connector image name * use connector image name * use connector image name * use connector image name * use connector image name * use connector image name * use connector image name * add test name argument * add test name argument * add test name argument * add test name argument * add test name argument * add test name argument * Automated Change * add bottleneck_stream1 dataset * Automated Change * fix dependency * fix dependency * test downgrade of commons to 41.1 * Automated Change * test downgrade of commons to 41.0 * test * test * test * test * test * exit condition * exit condition * exit condition * test * test * test * test * test * test * sanity * readme * change command name * update gradle settings * sanity * architecture aware docker build * sanity * put run harness step in a script * sanity * sanity --------- Co-authored-by: rodireich <rodireich@users.noreply.github.com>
21 lines
418 B
Bash
Executable File
21 lines
418 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
function echo2() {
|
|
echo >&2 "$@"
|
|
}
|
|
|
|
function error() {
|
|
echo2 "$@"
|
|
exit 1
|
|
}
|
|
|
|
# todo: make it easy to select source or destination and validate based on selection by adding an integration type env variable.
|
|
function main() {
|
|
nohup bash -c "socat tcp-listen:9000,reuseaddr,fork \"exec:printf \'HTTP/1.0 200 OK\r\n\r\n\'\" &";
|
|
cat <&0 | /airbyte/bin/"$APPLICATION" "$@"
|
|
}
|
|
|
|
main "$@"
|