Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jetty-users] Debugging a dry-run issue
  • From: "Cantor, Scott" <cantor.2@xxxxxxx>
  • Date: Wed, 19 Apr 2023 17:35:28 +0000
  • Accept-language: en-US
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=osu.edu; dmarc=pass action=none header.from=osu.edu; dkim=pass header.d=osu.edu; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector9901; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=Mf6RugVY4nxlzHNY0IhCRDMOyg9mKgy0m6UtsW0H7Vg=; b=NXGJR9+DH3yh+YnXyqxrGquscjXGc7VADqCMsMpp81z+Q6SvjvJRcNy3vQtKGiFme7mrnP3YhekVojRA4FKkrzr2/YmjdxQVV5xncj5ZuaPWfNxtY6N7eHnZTIy0krkJomuYA7+eI1b8xU4OmDB9A/rbwEGQ5/EG3zdsMDq3BMO/bETmqmNPlMOS4EVuUc2iR+46+7mt+G8J9oVjBMVNopkocHL/N0Fq5sttAwGdhZI75O0N+eDB2VyumCXlt7FxQlDQG643frcPJUW9OypQP2H/cwLvf9SPH2lM44Wi0T3hggFinjyXaLw+u9T5TxeMrxhL+bN8+CWpR4mZpX5WXA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector9901; d=microsoft.com; cv=none; b=nYa9jnTJREZ4araBsXqjewMT1BmM8ma5HEIzJnStJXWaJXvwgAkRirHM1Ai3VX6Bmdw3ayKQz4KIIcw3NYqbiJ5Sc2G9N/f1rS40lsJIuAjWfpyGOLbmUQ+GYCpSs5SYkG22HNlkMbY/+10vEbcykzjfk1kp7NBx2MtDsmVM0JCdNNAfG1nFC6VwDb7j7zL02dYlml2BRpDtDhzR77p+QYokOXtywg65Pe5ZgucfuOIzQ0D768gy8+/FbgEQmDD1RslrNhA8T4kcof+nCzgkRJJ64BtWXXyLm47zQqKuccXc2RXZvdzSjhmym/yC0ZysyVnXj6ZgAC3drqsfFHXZow==
  • Delivered-to: jetty-users@xxxxxxxxxxx
  • List-archive: <https://www.eclipse.org/mailman/private/jetty-users/>
  • List-help: <mailto:jetty-users-request@eclipse.org?subject=help>
  • List-subscribe: <https://www.eclipse.org/mailman/listinfo/jetty-users>, <mailto:jetty-users-request@eclipse.org?subject=subscribe>
  • List-unsubscribe: <https://www.eclipse.org/mailman/options/jetty-users>, <mailto:jetty-users-request@eclipse.org?subject=unsubscribe>
  • Thread-index: AQHZcuVV8sDxFlFiXUiuB3r26Eg79w==
  • Thread-topic: Debugging a dry-run issue
  • User-agent: Microsoft-MacOutlook/16.72.23041401

I think this commit between 10.0.14 and 10.0.15 is breaking my init script, which I know is quite non-optimal, but for debugging purposes...could I ask what the purpose of [1] is and what its functional impact is supposed to be?

What I think is happening is that it's single-quoting all my ini-sourced properties. Simple excerpt from --dry-run:

14:
jetty.ssl.sniHostCheck=false

15:
'jetty.ssl.sniHostCheck'='false'

It's clear from my results that Jetty does not see the latter at all, it's ignoring all my properties and using its defaults, but I don't know if I'm overlooking anything. Thought I'd start with "what's the intended change?".

I have historically had to do some sed magic on --dry-run to keep things working and I can probably do the same since I don't think my working command lines ever had any single quotes, but I'm still poking.

-- Scott

[1] https://github.com/eclipse/jetty.project/commit/8c992b9c93dfc505bb619bff1dba662b3d7d7f95




Back to the top