Skip to content

Commit

Permalink
chore: fix how session_secret is passed in
Browse files Browse the repository at this point in the history
  • Loading branch information
aaraney committed Jan 30, 2024
1 parent c568fde commit e5b6340
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/lib/scheduler/dmod/test/it_RedisBackedJobManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def setUp(self) -> None:
"data_format": "NWM_CONFIG", "continuous": [], "discrete": [{"variable": "data_id", "values": ["0"]}]},
"is_input": True,
"category": "CONFIG"}]}},
"session-secret": "f21f27ac3d443c0948aab924bddefc64891c455a756ca77a4d86ec2f697cd13c"}),
"session_secret": "f21f27ac3d443c0948aab924bddefc64891c455a756ca77a4d86ec2f697cd13c"}),
user_id='someone',
cpus=4,
mem=500000,
Expand All @@ -156,7 +156,7 @@ def setUp(self) -> None:
"data_format": "NWM_CONFIG", "continuous": [], "discrete": [{"variable": "data_id", "values": ["1"]}]},
"is_input": True,
"category": "CONFIG"}]}},
"session-secret": "123f27ac3d443c0948aab924bddefc64891c455a756ca77a4d86ec2f697cd13c"}),
"session_secret": "123f27ac3d443c0948aab924bddefc64891c455a756ca77a4d86ec2f697cd13c"}),
user_id='someone',
cpus=4,
mem=500000,
Expand All @@ -169,7 +169,7 @@ def setUp(self) -> None:
"data_format": "NWM_CONFIG", "continuous": [], "discrete": [{"variable": "data_id", "values": ["2"]}]},
"is_input": True,
"category": "CONFIG"}]}},
"session-secret": "f21f27ac3d443c0948aab924bddefc64891c455a756ca77a4d86ec2f697cd13c"}),
"session_secret": "f21f27ac3d443c0948aab924bddefc64891c455a756ca77a4d86ec2f697cd13c"}),
user_id='someone',
cpus=4,
mem=500000,
Expand All @@ -181,7 +181,7 @@ def setUp(self) -> None:
"data_format": "NWM_CONFIG", "continuous": [], "discrete": [{"variable": "data_id", "values": ["3"]}]},
"is_input": True,
"category": "CONFIG"}]}},
"session-secret": "f21f27ac3d443c0948aab924bddefc64891c455a756ca77a4d86ec2f697cd13c"}),
"session_secret": "f21f27ac3d443c0948aab924bddefc64891c455a756ca77a4d86ec2f697cd13c"}),
user_id='someone',
cpus=4,
mem=500000,
Expand Down

0 comments on commit e5b6340

Please sign in to comment.