Skip to content

Commit 244812f

Browse files
authored
Fix thirty two bit (#298)
* - Resolves #296 Signed-off-by: Justin Schuhmann <jmschu02@gmail.com> * - Resolves #292 (#292) Signed-off-by: Justin Schuhmann <jmschu02@gmail.com>
1 parent ce97e0b commit 244812f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

providers/pool.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ def configure
218218
configure_application_pool(new_resource.runtime_version && is_new_managed_runtime_version, "managedRuntimeVersion:v#{new_resource.runtime_version}")
219219
end
220220
configure_application_pool(new_resource.pipeline_mode && is_new_pipeline_mode, "managedPipelineMode:#{new_resource.pipeline_mode}")
221-
configure_application_pool(new_resource.thirty_two_bit && is_new_enable_32_bit_app_on_win_64, "enable32BitAppOnWin64:#{new_resource.thirty_two_bit}")
221+
configure_application_pool(is_new_enable_32_bit_app_on_win_64, "enable32BitAppOnWin64:#{new_resource.thirty_two_bit}")
222222
configure_application_pool(new_resource.queue_length && is_new_queue_length, "queueLength:#{new_resource.queue_length}")
223223

224224
# processModel items

0 commit comments

Comments
 (0)