Skip to content

Commit

Permalink
phoebus: 4.7.2 -> 4.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
minijackson committed Jan 11, 2024
1 parent 3ba438d commit 66c9f6d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 7 deletions.
8 changes: 5 additions & 3 deletions nixos/tests/phoebus/save-and-restore.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,13 @@
root_node_id = "44bef5de-e8e6-4014-af37-b8f6c8a939a2"
user = "myself"

base_url = "http://server:8080/save-restore"


def get(uri: str):
return json.loads(
client.succeed(
"curl -sSf " "-H 'Accept: application/json' " f"'http://server:8080{uri}'"
"curl -sSf " "-H 'Accept: application/json' " f"'{base_url}{uri}'"
)
)

Expand All @@ -25,7 +27,7 @@ def put(uri: str, data: JSON):
"-X PUT "
"-H 'Content-Type: application/json' "
"-H 'Accept: application/json' "
f"'http://server:8080{uri}' "
f"'{base_url}{uri}' "
f"--data '{encoded_data}'"
)
)
Expand All @@ -37,7 +39,7 @@ def delete(uri: str):
"-X DELETE "
"-H 'Content-Type: application/json' "
"-H 'Accept: application/json' "
f"'http://server:8080{uri}'"
f"'{base_url}{uri}'"
)


Expand Down
8 changes: 4 additions & 4 deletions pkgs/epnix/tools/phoebus/deps/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@
}:
stdenv.mkDerivation {
pname = "phoebus-deps";
version = "4.7.2";
version = "4.7.3";

src = fetchFromGitHub {
owner = "ControlSystemStudio";
repo = "phoebus";
rev = "v4.7.2";
hash = "sha256-UdfwQaOFvx+Ox68P2WuI8sN4eUmyW2WmoVKBj9ZzMXc=";
rev = "v4.7.3";
hash = "sha256-1Q66iZ+mTXzQ9pjW5wypG7q7rPy9K+PUcQXsKKk2sNo=";
};

nativeBuildInputs = [jdk maven];
Expand Down Expand Up @@ -58,7 +58,7 @@ stdenv.mkDerivation {

outputHashAlgo = "sha256";
outputHashMode = "recursive";
outputHash = "sha256-HFrdvjuImn77y2TJvOTxJUFQSwP3umIPklpqI4feplY=";
outputHash = "sha256-9MJdmIVAqjPW5ihZYWCh+zsWlxrtoHBH7NFwPh01pRc=";

doCheck = false;

Expand Down

0 comments on commit 66c9f6d

Please sign in to comment.