-
Notifications
You must be signed in to change notification settings - Fork 9
Update 2022 c2 #13
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
Merged
Merged
Update 2022 c2 #13
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
65a785b
add publishing documents to kafka
JunAishima 4a0cdd6
fix deprecation warning that will stop working with python 3.10
JunAishima bf79502
updated hdf packing
lyang11973 31d05a9
revised after 2022-2 conda environment update; prepare to write data …
lyang11973 34f3c7c
undo changes made for acceptance testing
JunAishima f0da57a
update ci template to a more recent one
JunAishima 6c37793
new guard slits
lyang11973 ecd1461
h5-related bug fix; now Pilatus h5 written directly to Lustre
lyang11973 4cad132
bug fix for login(test_only=True)
lyang11973 39b5b24
KQ: time.clock() replaced by time.perf_counter()
lyang11973 74b600d
metadata changes related to beamline config
lyang11973 4d5dd28
rolling back some changes, waiting for proposal directories to get fixed
lyang11973 3658d68
Update startup/03-security.py
JunAishima 1e637f2
Update startup/20-detectors.py
JunAishima 726217b
Update startup/40-hdf5.py
JunAishima 8c48c04
Update startup/39-original_suitcase.py
JunAishima fa144de
Update startup/39-original_suitcase.py
JunAishima f03fcfc
Update startup/40-hdf5.py
JunAishima 168bd70
Update startup/39-original_suitcase.py
JunAishima 67885f4
Update startup/39-original_suitcase.py
JunAishima ff4caf5
Update startup/39-original_suitcase.py
JunAishima 28266ec
Update startup/39-original_suitcase.py
JunAishima 0b15599
Update startup/39-original_suitcase.py
JunAishima 7fec29d
Update startup/39-original_suitcase.py
JunAishima 96b748e
Update startup/39-original_suitcase.py
JunAishima 3d3ff91
isort used to clean up imports
JunAishima 801018c
update comment for 6 levels
JunAishima c15dddc
fix word choice
JunAishima 9cd622d
remove extra argument
JunAishima File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,22 @@ | ||
| current_cycle = '2022-1' | ||
| pilatus_data_dir = "/exp_path/hdf" | ||
| from enum import Enum | ||
|
|
||
| class data_file_path(Enum): | ||
| old_gpfs = '/GPFS/xf16id/exp_path' | ||
| lustre_legacy = '/nsls2/data/lix/legacy' | ||
| lustre_asset = '/nsls2/data/lix/asset' | ||
| lustre_proposals = '/nsls2/data/lix/proposals' | ||
| gpfs = '/nsls2/xf16id1/data' | ||
| gpfs_experiments = '/nsls2/xf16id1/experiments' | ||
| ramdisk = '/exp_path' | ||
|
|
||
| current_cycle = '2022-2' | ||
| pilatus_data_dir = data_file_path.lustre_legacy.value | ||
| #pilatus_data_dir = f"{data_file_path.ramdisk.value}/hdf" | ||
| data_destination = data_file_path.lustre_legacy.value # this is where all IOC data files should eventually go | ||
| #proc_destination = data_file_path.lustre_proposals.value | ||
| proc_destination = data_file_path.gpfs_experiments.value | ||
| procdir_prefix = "pass-" | ||
|
|
||
| bl_comm_proposal = "310032" | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.